Skip to content

Commit

Permalink
Fix python requirement to include full 3.9 series.
Browse files Browse the repository at this point in the history
Also bump the 3.9 we test with in CI to 3.9.1.

Fixes pex-tool#1141
  • Loading branch information
jsirois committed Dec 15, 2020
1 parent aa2dd37 commit 1ce57e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ x-pyenv-install: &x-pyenv-install |
rm -rf ${PYENV_ROOT}
git clone https://github.com/pyenv/pyenv "${PYENV_ROOT}";
fi
GIT_DIR="${PYENV_ROOT}/.git" git pull --ff-only
"${PYENV}" install --keep --skip-existing ${PYENV_VERSION}
"${PYENV}" global ${PYENV_VERSION}

x-pyenv-39-env: &x-pyenv-39-env >
PYENV_VERSION=3.9.0
PYENV_VERSION=3.9.1

x-linux-3-shard: &x-linux-39-shard
<<: *x-linux-shard
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=2.7,<=3.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"
requires-python = ">=2.7,<3.10,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*"

[tool.flit.metadata.requires-extra]
# For improved subprocess robustness under python2.7.
Expand Down

0 comments on commit 1ce57e2

Please sign in to comment.