Skip to content

Commit ff63a02

Browse files
committed
no numba in 3.13t
1 parent 309a33a commit ff63a02

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/build-multiarch.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [master, release]
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/release' }}
12+
913
jobs:
1014
multi-arch-test:
1115
runs-on: ubuntu-latest

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
python -m pip install wheel
114114
pip install -r requirements_test.txt
115115
- name: Add numba
116-
if: ${{ !contains(fromJSON('["pypy3.9"]'), matrix.python-version) }}
116+
if: ${{ !contains(fromJSON('["pypy3.9", "3.13t"]'), matrix.python-version) }}
117117
run: |
118118
pip install numba
119119
- name: Test with pytest

.github/workflows/build_py2exe_library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
python -c "import platform; print(platform.platform()); print(platform.architecture())"
4040
python -m pip install --upgrade pip
41-
python -m pip install wheel
41+
python -m pip install wheel setuptools
4242
pip install -r requirements_test.txt
4343
pip install py2exe
4444

0 commit comments

Comments
 (0)