We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 509b96c commit 95f0dabCopy full SHA for 95f0dab
1 file changed
.github/workflows/python_package.yml
@@ -209,6 +209,8 @@ jobs:
209
needs: [pypi_build, conda_build]
210
runs-on: ubuntu-latest
211
env:
212
+ # pin to py3.11, as anaconda-client broken on py3.12 (see https://github.com/Anaconda-Platform/anaconda-client/issues/689)
213
+ python_version: 3.11
214
ANACONDA_USER: rtosholdings
215
ANACONDA_TOKEN: ${{ secrets.anaconda_token }}
216
steps:
@@ -218,6 +220,7 @@ jobs:
218
220
uses: conda-incubator/setup-miniconda@v2
219
221
with:
222
activate-environment: "conda_deploy"
223
+ python-version: ${{ env.python_version }}
224
miniforge-version: latest
225
use-mamba: true
226
auto-update-conda: false
0 commit comments