Skip to content

Commit 8877ef4

Browse files
Fix conda package build with python 3.12 (#2306)
2 parents c2f19c2 + 6ae29a4 commit 8877ef4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/publish-package/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
conda config --set always_yes yes --set changeps1 no
3232
# Install build requirements
3333
# We can't use the makefile target for this because the CONDA_ACTIVATE command is incompatible with GitHub Actions Windows runners
34-
conda create -n build-env --yes boa anaconda-client conda-verify
34+
conda create -n build-env --yes boa anaconda-client
3535
conda activate build-env
3636
# Configure the conda channels
3737
conda config --env $(cat environment.yml | sed -ne '/channels:/,/dependencies:/{//!p}' | grep '^ -' | sed 's/ - / --append channels /g' | tr -d '\n')

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source:
1313
requirements:
1414
build:
1515
- python=3.12.*
16-
- setuptools=62.*
16+
- setuptools=72.*
1717
run:
1818
- python=3.12.*
1919
- pip

0 commit comments

Comments
 (0)