Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ ENV \
COPY requirements.txt /tmp/requirements.txt
RUN : \
&& curl --silent --location --output /tmp/virtualenv.pyz https://bootstrap.pypa.io/virtualenv/3.10/virtualenv.pyz \
&& python3.12 /tmp/virtualenv.pyz /venv \
&& python3.14 /tmp/virtualenv.pyz /venv \
&& pip install --requirement /tmp/requirements.txt \
&& rm -rf "$XDG_CACHE_HOME" /tmp/virtualenv.pyz \
&& :
Expand Down
4 changes: 2 additions & 2 deletions bin/_info
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def main() -> int:
print()
_call('python3.11', '--version', '--version')
print()
_call('python3.13', '--version', '--version')
_call('python3.12', '--version', '--version')
print()
_call('python3.14', '--version', '--version')
_call('python3.13', '--version', '--version')
print()
_call('pypy3', '--version', '--version')
print()
Expand Down
Loading