Skip to content

Commit

Permalink
Test Python 3.13 pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 8, 2023
1 parent a7fe25d commit a6d4f0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ python3 -m pip install -U pytest-timeout
python3 -m pip install pyroma

if [[ $(uname) != CYGWIN* ]]; then
python3 -m pip install numpy
# TODO Update condition when NumPy supports 3.13
if ! [[ "$GHA_PYTHON_VERSION" == "3.13" ]]; then python3 -m pip install numpy ; fi

# PyQt6 doesn't support PyPy3
if [[ $GHA_PYTHON_VERSION == 3.* ]]; then
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
python-version: [
"pypy3.10",
"pypy3.9",
"3.13",
"3.12",
"3.11",
"3.10",
Expand All @@ -66,6 +67,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: ".ci/*.sh"
allow-prereleases: true

- name: Build system information
run: python3 .github/workflows/system-info.py
Expand Down

0 comments on commit a6d4f0d

Please sign in to comment.