Skip to content

Commit

Permalink
Change require Python to >=3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
skasberger committed Dec 2, 2020
1 parent 6c53b0f commit 4aef93b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 16 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Expand Up @@ -4,14 +4,12 @@ dist: xenial

matrix:
include:
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.6
env: TOXENV=docs
- python: 3.6
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -71,10 +71,9 @@ def run_tests(self):
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
]

Expand All @@ -88,7 +87,7 @@ def run_tests(self):
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/AUSSDA/pyDataverse",
python_requires=">=3.4",
python_requires=">=3.6",
platforms=["OS Independent"],
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIREMENTS,
Expand Down
12 changes: 3 additions & 9 deletions tox.ini
Expand Up @@ -10,25 +10,19 @@ skip_install = False
passenv = *
basepython = python3.6

[testenv:py34]
deps =
-r{toxinidir}/requirements/tests.txt
commands =
pytest -v tests/ --cov=pyDataverse --basetemp={envtmpdir}

[testenv:py35]
[testenv:py36]
deps =
-r{toxinidir}/requirements/tests.txt
commands =
pytest -v tests/ --cov=pyDataverse --basetemp={envtmpdir}

[testenv:py36]
[testenv:py37]
deps =
-r{toxinidir}/requirements/tests.txt
commands =
pytest -v tests/ --cov=pyDataverse --basetemp={envtmpdir}

[testenv:py37]
[testenv:py38]
deps =
-r{toxinidir}/requirements/tests.txt
commands =
Expand Down

0 comments on commit 4aef93b

Please sign in to comment.