Skip to content

Commit

Permalink
Add Python 3.13 to CI matrix (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard authored Oct 22, 2024
1 parent b4b2ef2 commit b98bb30
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
target: [x64, x86]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
target: [x86_64, i686]
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pytest>=7.0.0,<8.0.0
numpy>=1.0.0,<2.0.0
numpy>=2.1.0,<3.0.0; python_version >= "3.10"
numpy>=1.0.0,<2.0.0; python_version < "3.10"
pytest-benchmark[histogram]>=4.0.0,<=5.0.0
pytest-rerunfailures==11.1.2

0 comments on commit b98bb30

Please sign in to comment.