Skip to content

Commit

Permalink
Updates Python versions to newer ones (#2890)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Mar 5, 2021
1 parent 9e34e28 commit f73c337
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
else
# Otherwise, we install it from scratch
# NOTE: keep this version in sync with PYMAIN in tooling
"$SCRIPTS/ensure-python.sh" 3.8.7
PYTHON=$(pythonloc 3.8.7)/bin/python
"$SCRIPTS/ensure-python.sh" 3.8.8
PYTHON=$(pythonloc 3.8.8)/bin/python
fi

TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt"
Expand Down
8 changes: 4 additions & 4 deletions tooling/src/hypothesistooling/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,10 +308,10 @@ def run_tox(task, version):


# Via https://github.com/pyenv/pyenv/tree/master/plugins/python-build/share/python-build
PY36 = "3.6.12"
PY37 = "3.7.9"
PY38 = PYMAIN = "3.8.7" # Note: keep this in sync with build.sh
PY39 = "3.9.1"
PY36 = "3.6.13"
PY37 = "3.7.10"
PY38 = PYMAIN = "3.8.8" # Note: keep this in sync with build.sh
PY39 = "3.9.2"
PYPY36 = "pypy3.6-7.3.1"
PYPY37 = "pypy3.7-7.3.2"

Expand Down

0 comments on commit f73c337

Please sign in to comment.