Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily disable Python 3.4 in build #641

Merged
merged 1 commit into from
Feb 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ PYENV_PREREQ_HELP = "\033[0;31mIMPORTANT\033[0m: please add \033[0;31meval \"\$$
VE_MISSING_HELP = "\033[0;31mIMPORTANT\033[0m: Couldn't find $(PWD)/$(VENV_NAME); have you executed make venv-create?\033[0m\n"

prereq: make-requirements.txt
pyenv install $(PY34)
# Temporarily disable Python 3.4 builds
# pyenv install $(PY34)
pyenv install $(PY35)
pyenv install $(PY36)
pyenv install $(PY37)
Expand Down Expand Up @@ -88,9 +89,10 @@ test: check-venv
it: check-venv python-caches-clean
. $(VENV_ACTIVATE_FILE); tox

it34: check-venv python-caches-clean
. $(VENV_ACTIVATE_FILE); tox -e py34

# Temporarily disable Python 3.4 builds
#it34: check-venv python-caches-clean
# . $(VENV_ACTIVATE_FILE); tox -e py34
#
it35: check-venv python-caches-clean
. $(VENV_ACTIVATE_FILE); tox -e py35

Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@
#
###############################################################################
[tox]
# Temporarily disable Python 3.4 builds
#envlist =
# docs, py34, py35, py36, py37
envlist =
docs, py34, py35, py36, py37
docs, py35, py36, py37
platform =
linux|darwin

Expand Down