Skip to content

Commit af19c8d

Browse files
committed
broader python version range
1 parent 3ef7ade commit af19c8d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/conda_release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ jobs:
3838
use-only-tar-bz2: true
3939
auto-update-conda: true
4040
auto-activate-base: true
41+
python-version: 3.12
42+
mamba-version: "*"
4143

4244
# 2) Install conda-build and anaconda-client
4345
- name: create environment with conda
4446
run: |
45-
conda install -y conda-build anaconda-client
47+
mamba install -y conda-build anaconda-client
4648
4749
# 3) Compute VERSION, TAR_URL, SHA256, and REPO info
4850
- name: Set version and SHA256
@@ -90,7 +92,7 @@ jobs:
9092
REPO_HOME: ${{ steps.vars.outputs.REPO_HOME }}
9193
run: |
9294
cd conda-recipe
93-
conda-build . --output-folder ../conda-build-artifacts
95+
mamba build . --output-folder ../conda-build-artifacts
9496
9597
# 5) Upload the built artifacts to Anaconda.org
9698
- name: Upload to Anaconda.org

conda-recipe/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ requirements:
2929
build:
3030
- {{ compiler("cxx") }}
3131
- cmake
32-
- python >=3.9,<3.14
32+
- python
3333
- pip
3434
- setuptools
3535
- scikit-build
3636
host:
37-
- python >=3.9,<3.14
37+
- python
3838
- scikit-build
3939
run:
40-
- python >=3.9,<3.14
40+
- python
4141

4242
about:
4343
home: {{ REPO_HOME }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010
name = "aligncount_demo"
1111
version = "0.2.0"
1212
description = "Aligncount wrapper"
13-
requires-python = ">=3.9,<3.14"
13+
requires-python = ">=3.12,<3.14"
1414

1515
[project.scripts]
1616
aligncount = "cli.entrypoint:main"

0 commit comments

Comments
 (0)