Skip to content

Commit

Permalink
Add Python 3.8 in Rally tests
Browse files Browse the repository at this point in the history
and update classifiers to include Python 3.8

Relates #815 
Closes #809
  • Loading branch information
dliappis authored Nov 15, 2019
1 parent fc88512 commit 841886d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ it36: check-venv python-caches-clean tox-env-clean
it37: check-venv python-caches-clean tox-env-clean
. $(VENV_ACTIVATE_FILE); tox -e py37

it38: check-venv python-caches-clean tox-env-clean
. $(VENV_ACTIVATE_FILE); tox -e py38

benchmark: check-venv
$(VEPYTHON) setup.py pytest --addopts="-s benchmarks"

Expand All @@ -122,4 +125,4 @@ release-checks: check-venv
release: check-venv release-checks clean docs it
. $(VENV_ACTIVATE_FILE); ./release.sh $(release_version) $(next_version)

.PHONY: install clean nondocs-clean docs-clean python-caches-clean tox-env-clean docs test it it34 it35 it36 benchmark coverage release release-checks prereq venv-create check-env
.PHONY: install clean nondocs-clean docs-clean python-caches-clean tox-env-clean docs test it it35 it36 it37 it38 benchmark coverage release release-checks prereq venv-create check-env
1 change: 1 addition & 0 deletions make-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PY35=3.5.6
PY36=3.6.7
PY37=3.7.1
PY38=3.8.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,6 @@ def str_from_file(name):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
zip_safe=False)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
###############################################################################
[tox]
envlist =
docs, py35, py36, py37
docs, py35, py36, py37, py38
platform =
linux|darwin

Expand Down

0 comments on commit 841886d

Please sign in to comment.