Skip to content

Commit

Permalink
fix classifier and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Nov 5, 2018
1 parent 5ad162f commit 915c38b
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 915c38b

Please sign in to comment.