Commit 6c4702f 1 parent d352157 commit 6c4702f Copy full SHA for 6c4702f
File tree 4 files changed +10
-10
lines changed
spec/dependabot/python/update_checker
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -102,10 +102,10 @@ ENV PYENV_ROOT=/usr/local/.pyenv \
102
102
PATH="/usr/local/.pyenv/bin:$PATH"
103
103
RUN mkdir -p "$PYENV_ROOT" && chown dependabot:dependabot "$PYENV_ROOT"
104
104
USER dependabot
105
- RUN git -c advice.detachedHead=false clone https://github.com/pyenv/pyenv.git --branch v2.3.4 --single-branch --depth=1 /usr/local/.pyenv \
105
+ RUN git -c advice.detachedHead=false clone https://github.com/pyenv/pyenv.git --branch v2.3.5 --single-branch --depth=1 /usr/local/.pyenv \
106
106
# This is the version of CPython that gets installed
107
- && pyenv install 3.10.6 \
108
- && pyenv global 3.10.6 \
107
+ && pyenv install 3.10.7 \
108
+ && pyenv global 3.10.7 \
109
109
&& rm -Rf /tmp/python-build*
110
110
USER root
111
111
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ cp -r \
18
18
" $install_dir "
19
19
20
20
cd " $install_dir "
21
- PYENV_VERSION=3.10.6 pyenv exec pip --disable-pip-version-check install --use-pep517 -r " requirements.txt"
21
+ PYENV_VERSION=3.10.7 pyenv exec pip --disable-pip-version-check install --use-pep517 -r " requirements.txt"
Original file line number Diff line number Diff line change @@ -4,16 +4,16 @@ module Dependabot
4
4
module Python
5
5
module PythonVersions
6
6
PRE_INSTALLED_PYTHON_VERSIONS = %w(
7
- 3.10.6
7
+ 3.10.7
8
8
) . freeze
9
9
10
10
# Due to an OpenSSL issue we can only install the following versions in
11
11
# the Dependabot container.
12
12
SUPPORTED_VERSIONS = %w(
13
- 3.10.6 3.10.5 3.10.4 3.10.3 3.10.2 3.10.1 3.10.0
14
- 3.9.13 3.9.12 3.9.11 3.9.10 3.9.9 3.9.8 3.9.7 3.9.6 3.9.5 3.9.4 3.9.2 3.9.1 3.9.0
15
- 3.8.13 3.8.12 3.8.11 3.8.10 3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 3.8.2 3.8.1 3.8.0
16
- 3.7.13 3.7.12 3.7.11 3.7.10 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
13
+ 3.10.7 3.10. 6 3.10.5 3.10.4 3.10.3 3.10.2 3.10.1 3.10.0
14
+ 3.9.14 3.9. 13 3.9.12 3.9.11 3.9.10 3.9.9 3.9.8 3.9.7 3.9.6 3.9.5 3.9.4 3.9.2 3.9.1 3.9.0
15
+ 3.8.14 3.8. 13 3.8.12 3.8.11 3.8.10 3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 3.8.2 3.8.1 3.8.0
16
+ 3.7.14 3.7. 13 3.7.12 3.7.11 3.7.10 3.7.9 3.7.8 3.7.7 3.7.6 3.7.5 3.7.4 3.7.3 3.7.2 3.7.1 3.7.0
17
17
3.6.15 3.6.14 3.6.13 3.6.12 3.6.11 3.6.10 3.6.9 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3
18
18
3.6.2 3.6.1 3.6.0 3.5.10 3.5.8 3.5.7 3.5.6 3.5.5 3.5.4 3.5.3
19
19
) . freeze
Original file line number Diff line number Diff line change 218
218
to start_with ( "Dependabot detected the following Python" )
219
219
expect ( error . message ) . to include ( "3.4.*" )
220
220
expect ( error . message ) .
221
- to include ( "supported in Dependabot: 3.10.6 , 3.10.5 , 3.10.4 " )
221
+ to include ( "supported in Dependabot: 3.10.7 , 3.10.6 , 3.10.5 " )
222
222
end
223
223
end
224
224
end
You can’t perform that action at this time.
0 commit comments