Skip to content

Commit

Permalink
Merge pull request #50 from ocefpaf/fix_classifier
Browse files Browse the repository at this point in the history
fix classifier and publish
  • Loading branch information
ocefpaf authored Nov 5, 2018
2 parents 5ad162f + 915c38b commit 2758370
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ install:

script:
- if [[ $TEST_TARGET == 'default' ]]; then
cp -r tests/ /tmp && cd /tmp ;
pytest -vvv tests ;
cp -r tests/ /tmp ;
pushd /tmp && pytest -vvv tests && popd ;
fi

- if [[ $TEST_TARGET == 'coding_standards' ]]; then
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def walk_subpkg(name):
keywords='data visualization',
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable'
],
Expand All @@ -66,5 +66,5 @@ def walk_subpkg(name):
tests_require=['pytest'],
license=LICENSE,
install_requires=install_requires,
zip_safe=False
zip_safe=False,
)

0 comments on commit 2758370

Please sign in to comment.