Skip to content

Commit

Permalink
Merge pull request #10 from Klavionik/ci-use-313
Browse files Browse the repository at this point in the history
Run CI using Python 3.13
  • Loading branch information
Klavionik authored Oct 19, 2024
2 parents 31234a9 + 9cd81eb commit a67bae5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# If this workflow is called to build for release, build using
# only one Python version, which is the lowest ABI version set
# in PyO3 features.
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.12"]') }}
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.13"]') }}
env:
DISPLAY: :0
steps:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
# If this workflow is called to build for release, build using
# only one Python version, which is the lowest ABI version set
# in PyO3 features.
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.12"]') }}
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.13"]') }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
# If this workflow is called to build for release, build using
# only one Python version, which is the lowest ABI version set
# in PyO3 features.
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.12"]') }}
py: ${{ inputs.release && fromJSON('["3.8"]') || fromJSON('["3.8", "3.13"]') }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]

Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pillow==10.3.0
pillow==11.0.0 ; python_version >= "3.13"
pillow==10.4.0 ; python_version >= "3.8" and python_version < "3.13"
pytest==8.0.0
pytest-repeat==0.9.3

0 comments on commit a67bae5

Please sign in to comment.