Skip to content

Commit

Permalink
Fix conda package build with python 3.12 (#2306)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeSullivan7 authored Aug 7, 2024
2 parents c2f19c2 + 6ae29a4 commit 8877ef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
conda config --set always_yes yes --set changeps1 no
# Install build requirements
# We can't use the makefile target for this because the CONDA_ACTIVATE command is incompatible with GitHub Actions Windows runners
conda create -n build-env --yes boa anaconda-client conda-verify
conda create -n build-env --yes boa anaconda-client
conda activate build-env
# Configure the conda channels
conda config --env $(cat environment.yml | sed -ne '/channels:/,/dependencies:/{//!p}' | grep '^ -' | sed 's/ - / --append channels /g' | tr -d '\n')
Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ source:
requirements:
build:
- python=3.12.*
- setuptools=62.*
- setuptools=72.*
run:
- python=3.12.*
- pip
Expand Down

0 comments on commit 8877ef4

Please sign in to comment.