Skip to content

Commit 0261783

Browse files
committed
Update to 3.14rc2
1 parent 4d5cdb4 commit 0261783

15 files changed

Lines changed: 23 additions & 23 deletions

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
sdist: ${{ steps.package.outputs.sdist }}
2121
wheel: ${{ steps.package.outputs.wheel }}
2222
container:
23-
image: danielflook/python-minifier-build:python3.14-2025-08-13
23+
image: danielflook/python-minifier-build:python3.14-2025-08-21
2424
permissions:
2525
contents: read
2626
steps:
@@ -68,7 +68,7 @@ jobs:
6868
outputs:
6969
wheel: ${{ steps.package.outputs.wheel }}
7070
container:
71-
image: danielflook/python-minifier-build:python2.7-2025-08-13
71+
image: danielflook/python-minifier-build:python2.7-2025-08-21
7272
steps:
7373
- name: Download source distribution artifact
7474
uses: actions/download-artifact@v4.1.8
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-24.04
9999
needs: [package_python3]
100100
container:
101-
image: danielflook/python-minifier-build:python3.14-2025-08-13
101+
image: danielflook/python-minifier-build:python3.14-2025-08-21
102102
permissions:
103103
contents: read
104104
steps:

.github/workflows/release_test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
sdist: ${{ steps.package.outputs.sdist }}
1515
wheel: ${{ steps.package.outputs.wheel }}
1616
container:
17-
image: danielflook/python-minifier-build:python3.14-2025-08-13
17+
image: danielflook/python-minifier-build:python3.14-2025-08-21
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4.2.2
@@ -60,7 +60,7 @@ jobs:
6060
outputs:
6161
wheel: ${{ steps.package.outputs.wheel }}
6262
container:
63-
image: danielflook/python-minifier-build:python2.7-2025-08-13
63+
image: danielflook/python-minifier-build:python2.7-2025-08-21
6464
steps:
6565
- name: Download source distribution artifact
6666
uses: actions/download-artifact@v4.1.8
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-24.04
9191
needs: [package_python3]
9292
container:
93-
image: danielflook/python-minifier-build:python3.14-2025-08-13
93+
image: danielflook/python-minifier-build:python3.14-2025-08-21
9494
steps:
9595
- uses: actions/download-artifact@v4.1.8
9696
with:
@@ -143,7 +143,7 @@ jobs:
143143
- name: Test
144144
uses: ./.github/actions/run-in-container
145145
with:
146-
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-13
146+
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-21
147147
run: |
148148
if [[ "${{ matrix.package_type }}" == "sdist" ]]; then
149149
pip${{ matrix.python }} install dist/${{needs.package_python3.outputs.sdist}}
@@ -169,7 +169,7 @@ jobs:
169169
matrix:
170170
package_type: [sdist, wheel]
171171
container:
172-
image: danielflook/python-minifier-build:python3.14-2025-08-13
172+
image: danielflook/python-minifier-build:python3.14-2025-08-21
173173
steps:
174174
- name: Download distribution artifacts
175175
uses: actions/download-artifact@v4.1.8

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run tests
3131
uses: ./.github/actions/run-in-container
3232
with:
33-
image: danielflook/python-minifier-build:${{ matrix.python }}-2025-08-13
33+
image: danielflook/python-minifier-build:${{ matrix.python }}-2025-08-21
3434
run: |
3535
tox -r -e $(echo "${{ matrix.python }}" | tr -d .)
3636

.github/workflows/test_corpus.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Run tests
7373
uses: dflook/run-in-container@main
7474
with:
75-
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-13
75+
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-21
7676
volumes: |
7777
/corpus:/corpus
7878
/corpus-results:/corpus-results
@@ -143,7 +143,7 @@ jobs:
143143
- name: Generate Report
144144
uses: dflook/run-in-container@main
145145
with:
146-
image: danielflook/python-minifier-build:python3.14-2025-08-13
146+
image: danielflook/python-minifier-build:python3.14-2025-08-21
147147
volumes: |
148148
/corpus-results:/corpus-results
149149
run: |

.github/workflows/verify_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2121
container:
22-
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-13
22+
image: danielflook/python-minifier-build:python${{ matrix.python }}-2025-08-21
2323
steps:
2424
- name: Test
2525
env:

.github/workflows/xtest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run tests
3434
uses: ./.github/actions/run-in-container
3535
with:
36-
image: danielflook/python-minifier-build:${{ matrix.python }}-2025-08-13
36+
image: danielflook/python-minifier-build:${{ matrix.python }}-2025-08-21
3737
run: |
3838
3939
if [[ "${{ matrix.python }}" == "python3.4" ]]; then

docker/Dockerfile-fedora28

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RUN <<EOF
5959
dnf clean all && rm -rf /var/cache/dnf/*
6060
EOF
6161

62-
RUN pip3 install --no-cache-dir 'tox<3' 'virtualenv<16' 'setuptools_scm<7'
62+
RUN pip3 install --no-cache-dir tox==2.9.1 virtualenv==15.2.0 setuptools_scm==1.15.7 pluggy==0.5.2 py==1.4.34 six==1.17.0
6363

6464
WORKDIR /tmp/work
6565
ENTRYPOINT ["/bin/bash"]

docker/Dockerfile-fedora30

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN <<EOF
1818
dnf clean all && rm -rf /var/cache/dnf/*
1919
EOF
2020

21-
RUN pip3 install --no-cache-dir tox==3.11.1 virtualenv==16.6.0
21+
RUN pip3 install --no-cache-dir tox==3.11.1 virtualenv==16.6.0 filelock==3.12.2 importlib-metadata==6.7.0 pluggy==0.13.1 py==1.11.0 six==1.17.0 toml==0.10.2 typing-extensions==4.7.1 zipp==3.15.0
2222

2323
WORKDIR /tmp/work
2424
ENTRYPOINT ["/bin/bash"]

docker/Dockerfile-fedora32

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ RUN <<EOF
6565
dnf clean all && rm -rf /var/cache/dnf/*
6666
EOF
6767

68-
RUN pip3 install --no-cache-dir tox==3.20
68+
RUN pip3 install --no-cache-dir tox==3.20.0 virtualenv==20.33.1 toml==0.10.2 py==1.11.0 packaging==25.0 six==1.17.0 pluggy==1.6.0 filelock==3.19.1 platformdirs==4.3.8 distlib==0.4.0
6969

7070
WORKDIR /tmp/work
7171
ENTRYPOINT ["/bin/bash"]

docker/Dockerfile-fedora34

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ RUN <<EOF
4949
dnf clean all && rm -rf /var/cache/dnf/*
5050
EOF
5151

52-
RUN pip3 install --no-cache-dir tox==3.24.1
52+
RUN pip3 install --no-cache-dir tox==3.24.1 virtualenv==20.26.4 distlib==0.4.0 filelock==3.19.1 packaging==25.0 platformdirs==4.3.8 pluggy==1.6.0 py==1.11.0 six==1.17.0 toml==0.10.2
5353

5454
WORKDIR /tmp/work
5555
ENTRYPOINT ["/bin/bash"]

0 commit comments

Comments
 (0)