Skip to content

Commit

Permalink
Merge pull request #136 from ZLLentz/fix_upload_3.12_issue
Browse files Browse the repository at this point in the history
FIX: upload using python 3.11 to avoid a 3.12 compatibility issue
  • Loading branch information
ZLLentz authored Oct 11, 2023
2 parents 8513cb9 + df6d645 commit 4d720b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-conda-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ jobs:
env:
ANACONDA_API_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN_DEV }}
run: |
micromamba create --name upload anaconda-client
micromamba create --name upload python=3.11 anaconda-client
micromamba activate upload
anaconda upload "${HOME}"/conda-bld/noarch/*.tar.bz2
Expand All @@ -248,7 +248,7 @@ jobs:
env:
ANACONDA_API_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN_TAG }}
run: |
micromamba create --name upload anaconda-client
micromamba create --name upload python=3.11 anaconda-client
micromamba activate upload
anaconda upload "${HOME}"/conda-bld/noarch/*.tar.bz2
Expand Down

0 comments on commit 4d720b5

Please sign in to comment.