Skip to content

Commit

Permalink
Merge pull request #839 from Debilski/feature/python-3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Debilski authored Oct 14, 2024
2 parents 7d06981 + 5baf5f9 commit 7226bfa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history and tags (needed for git describe)
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Install sphinx and prepare repo
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'

- name: Install flit
run: python -m pip install flit
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/test_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
exclude:
- os: macos-latest
python-version: '3.9'
Expand All @@ -22,6 +22,8 @@ jobs:
python-version: '3.11'
- os: macos-13
python-version: '3.12'
- os: macos-13
python-version: '3.13'
timeout-minutes: 15

steps:
Expand Down Expand Up @@ -82,7 +84,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
timeout-minutes: 15

steps:
Expand All @@ -102,13 +104,13 @@ jobs:
timeout-minutes: 10

contrib:
# The tournament does not need to run everywhere.
# The contrib stuff does not need to run everywhere.
# Only test on the latest ubuntu/macos for recent versions of Python.
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.12"]
python-version: ["3.12", "3.13"]
timeout-minutes: 5

steps:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
urls = {Homepage = "https://github.com/ASPP/pelita"}
requires-python = ">= 3.9"
Expand Down

0 comments on commit 7226bfa

Please sign in to comment.