Skip to content

Commit 98e2fb0

Browse files
committed
Updated constraints to <3.13
1 parent 841b5b1 commit 98e2fb0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/publish-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-15-intel] # Intel runner for conda compatibility
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
14-
# Note: Excluded Python 3.14 as conda-build doesn't support it yet
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
# Note: Excluded Python 3.13+ due to conda-build virtual package resolution issues
1515
# Note: Using macos-15-intel (x86_64) for consistency with conda-forge practices
1616

1717
steps:

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262
strategy:
6363
matrix:
6464
os: [ubuntu-latest, windows-latest, macos-15-intel] # Intel runner for conda compatibility
65-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
66-
# Note: Excluded Python 3.14 as conda-build doesn't support it yet
65+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
66+
# Note: Excluded Python 3.13+ due to conda-build virtual package resolution issues
6767
# Note: Using macos-15-intel (x86_64) for consistency with conda-forge practices
6868

6969
steps:

conda.recipe/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ source:
2020
build:
2121
number: 0
2222
script: {{ PYTHON }} -m pip install . -vv
23-
# Skip Python 2.x, 3.7 and below, and 3.14+ (conda-build doesn't support 3.14 yet)
24-
skip: true # [py<38 or py>=314]
23+
# Skip Python 2.x, 3.7 and below, and 3.13+ (conda-build virtual package issues on 3.13+)
24+
skip: true # [py<38 or py>=313]
2525

2626
requirements:
2727
build:
@@ -33,7 +33,7 @@ requirements:
3333
- setuptools >=45
3434
- wheel
3535
run:
36-
- python >=3.8,<3.14
36+
- python >=3.8,<3.13
3737

3838
test:
3939
imports:

0 commit comments

Comments
 (0)