Skip to content

Commit 07fd419

Browse files
authored
Limit python version for deployment (#446)
### 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
2 parents fcc7ad0 + 5c72c5d commit 07fd419

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Python3
3737
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
3838
with:
39-
python-version: "3.x"
39+
python-version: "3.12" # Python 3.13 is not available yet
4040
- name: Install CI libraries
4141
run: |
4242
python -m pip install --require-hashes -r CI/requirements_ci.txt

.github/workflows/tag-testpypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Set up Python3
6363
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
6464
with:
65-
python-version: "3.x"
65+
python-version: "3.12" # Python 3.13 is not available yet
6666
- name: Install CI libraries
6767
run: |
6868
python -m pip install --require-hashes -r CI/requirements_ci.txt

0 commit comments

Comments
 (0)