diff options
author | 2023-09-11 23:02:46 +0100 | |
---|---|---|
committer | 2023-09-11 23:02:46 +0100 | |
commit | f763dba0789076c7962e1cdc226062a0a2119c60 (patch) | |
tree | 1e1dfe65b331f3296905fb5baa1319b34a11ddf5 | |
parent | Merge pull request #186 from python-discord/update-eval-deps (diff) | |
parent | Bump numpy up to 1.26.0rc1 when running on 3.12 (diff) |
Merge pull request #192 from python-discord/bump-Python-versions
Bump Python versions
-rw-r--r-- | Dockerfile | 8 | ||||
-rw-r--r-- | requirements/eval-deps.pip | 2 |
2 files changed, 5 insertions, 5 deletions
@@ -33,13 +33,13 @@ COPY --link scripts/build_python.sh / # ------------------------------------------------------------------------------ FROM builder-py-base as builder-py-3_11 -RUN git clone -b v2.3.24 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \ - && /build_python.sh 3.11.4 +RUN git clone -b v2.3.26 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \ + && /build_python.sh 3.11.5 # ------------------------------------------------------------------------------ FROM builder-py-base as builder-py-3_12 -RUN git clone -b v2.3.24 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \ - && /build_python.sh 3.12.0rc1 +RUN git clone -b v2.3.26 --depth 1 https://github.com/pyenv/pyenv.git $PYENV_ROOT \ + && /build_python.sh 3.12.0rc2 # ------------------------------------------------------------------------------ FROM python:3.11-slim-buster as base diff --git a/requirements/eval-deps.pip b/requirements/eval-deps.pip index d2379a5..13038b7 100644 --- a/requirements/eval-deps.pip +++ b/requirements/eval-deps.pip @@ -11,7 +11,7 @@ matplotlib~=3.7 ; python_version == '3.11' # https://github.com/matplotlib/matp more-itertools~=10.1 networkx~=3.1 numpy~=1.25 ; python_version == '3.11' -numpy==1.26.0b1 ; python_version == '3.12' +numpy==1.26.0rc1 ; python_version == '3.12' pandas~=2.0 ; python_version == '3.11' pendulum~=2.1 ; python_version == '3.11' # https://github.com/sdispater/pendulum/issues/696 python-dateutil~=2.8 |