Skip to content

Commit

Permalink
Update python 12 build container to use Python 3.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Jan 12, 2024
1 parent baee4a8 commit 0da44dc
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
release:
runs-on: ubuntu-latest
container:
image: danielflook/python-minifier-build:python3.12-2023-09-25
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
sdist: ${{ steps.package.outputs.sdist }}
wheel: ${{ steps.package.outputs.wheel }}
container:
image: danielflook/python-minifier-build:python3.12-2023-09-25
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
outputs:
wheel: ${{ steps.package.outputs.wheel }}
container:
image: danielflook/python-minifier-build:python2.7-2023-09-25
image: danielflook/python-minifier-build:python2.7-2024-01-12
steps:
- uses: actions/download-artifact@v3
with:
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
needs: [package_python3]
container:
image: danielflook/python-minifier-build:python3.12-2023-09-25
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
python: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
package_type: [sdist, wheel]
container:
image: danielflook/python-minifier-build:python${{ matrix.python }}-2023-09-25
image: danielflook/python-minifier-build:python${{ matrix.python }}-2024-01-12
steps:
- uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
matrix:
package_type: [sdist, wheel]
container:
image: danielflook/python-minifier-build:python3.12-2023-09-25
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
python: ["python2.7", "python3.3", "python3.4", "python3.5", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "pypy", "pypy3"]
container:
image: danielflook/python-minifier-build:${{ matrix.python }}-2023-09-25
image: danielflook/python-minifier-build:${{ matrix.python }}-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_corpus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
python: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
ref: ["${{ inputs.ref }}", "${{ inputs.base-ref }}"]
container:
image: danielflook/python-minifier-build:python${{ matrix.python }}-2023-09-25
image: danielflook/python-minifier-build:python${{ matrix.python }}-2024-01-12
volumes:
- /corpus:/corpus
- /corpus-results:/corpus-results
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
needs: generate_results
runs-on: self-hosted
container:
image: danielflook/python-minifier-build:python3.12-2023-09-25
image: danielflook/python-minifier-build:python3.12-2024-01-12
volumes:
- /corpus-results:/corpus-results
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
python: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
container:
image: danielflook/python-minifier-build:python${{ matrix.python }}-2023-09-25
image: danielflook/python-minifier-build:python${{ matrix.python }}-2024-01-12
steps:
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
python: ["python2.7", "python3.3", "python3.4", "python3.5", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "pypy3"]
container:
image: danielflook/python-minifier-build:${{ matrix.python }}-2023-09-25
image: danielflook/python-minifier-build:${{ matrix.python }}-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-fedora38
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN dnf install -y \
wget \
&& git clone https://github.com/python/cpython.git \
&& cd cpython \
&& git checkout v3.12.0rc3 \
&& git checkout v3.12.1 \
&& ./configure \
&& make \
&& make install \
Expand Down

0 comments on commit 0da44dc

Please sign in to comment.