Skip to content

Commit

Permalink
Limit python version for deployment (#446)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?

* Limits the Python version to 3.12 as not all CI dependencies are
available for Python 3.13

### Does this PR introduce a breaking change?

No.

### Other information:

TheKevJames/coveralls-python#542
  • Loading branch information
Zeitsperre authored Jan 27, 2025
2 parents fcc7ad0 + 5c72c5d commit 07fd419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Python3
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.x"
python-version: "3.12" # Python 3.13 is not available yet
- name: Install CI libraries
run: |
python -m pip install --require-hashes -r CI/requirements_ci.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Set up Python3
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.x"
python-version: "3.12" # Python 3.13 is not available yet
- name: Install CI libraries
run: |
python -m pip install --require-hashes -r CI/requirements_ci.txt
Expand Down

0 comments on commit 07fd419

Please sign in to comment.