Skip to content

Commit 60a77e8

Browse files
committed
fix conda build
1 parent 6cc876a commit 60a77e8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/publish-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
strategy:
6363
matrix:
6464
os: [ubuntu-latest, windows-latest, macos-latest]
65-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
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
6667

6768
steps:
6869
- uses: actions/checkout@v4

conda.recipe/meta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "slick_queue_py" %}
2-
{% set version = "1.0.0" %}
2+
{% set version = "1.0.1" %}
33

44
package:
55
name: {{ name|lower }}
@@ -20,8 +20,8 @@ source:
2020
build:
2121
number: 0
2222
script: {{ PYTHON }} -m pip install . -vv
23-
# Skip Python 2.x and 3.7 and below
24-
skip: true # [py<38]
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]
2525

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

3838
test:
3939
imports:

0 commit comments

Comments
 (0)