Skip to content

Commit caee08c

Browse files
authored
Merge pull request #322 from pre-commit-ci/py314-default
python 3.14 is the default python
2 parents 440393e + 62f20ff commit caee08c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ENV \
7474
COPY requirements.txt /tmp/requirements.txt
7575
RUN : \
7676
&& curl --silent --location --output /tmp/virtualenv.pyz https://bootstrap.pypa.io/virtualenv/3.10/virtualenv.pyz \
77-
&& python3.12 /tmp/virtualenv.pyz /venv \
77+
&& python3.14 /tmp/virtualenv.pyz /venv \
7878
&& pip install --requirement /tmp/requirements.txt \
7979
&& rm -rf "$XDG_CACHE_HOME" /tmp/virtualenv.pyz \
8080
&& :

bin/_info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ def main() -> int:
5151
print()
5252
_call('python3.11', '--version', '--version')
5353
print()
54-
_call('python3.13', '--version', '--version')
54+
_call('python3.12', '--version', '--version')
5555
print()
56-
_call('python3.14', '--version', '--version')
56+
_call('python3.13', '--version', '--version')
5757
print()
5858
_call('pypy3', '--version', '--version')
5959
print()

0 commit comments

Comments
 (0)