From 915c38bf0d376cc6fca351a42ae7bf796add1be2 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Mon, 5 Nov 2018 17:02:39 -0200 Subject: [PATCH] fix classifier and publish --- .travis.yml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d286206..1b3ca98 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index d318948..22f9c3b 100644 --- a/setup.py +++ b/setup.py @@ -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' ], @@ -66,5 +66,5 @@ def walk_subpkg(name): tests_require=['pytest'], license=LICENSE, install_requires=install_requires, - zip_safe=False + zip_safe=False, )