Skip to content

Commit

Permalink
fix: geopandas install for py3.8 seems to be tricky
Browse files Browse the repository at this point in the history
  • Loading branch information
AngRodrigues committed Jan 7, 2025
1 parent fa06f23 commit afc205a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: ${{ fromJSON(vars.BUILD_OS)}}
python-version: ${{ fromJSON(vars.PYTHON_VERSIONS)}}
python-version: [3.8] # temp for testing purposes ${{ fromJSON(vars.PYTHON_VERSIONS)
steps:
- uses: conda-incubator/setup-miniconda@v3
with:
Expand All @@ -27,6 +27,10 @@ jobs:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
shell: bash -l {0}
run: |
conda update conda -y
conda config --env --add channels conda-forge
conda config --env --add channels loop3d
conda config --env --set channel_priority strict
conda install -c conda-forge conda-build scikit-build-core numpy anaconda-client conda-libmamba-solver -y
conda config --set solver libmamba
conda build -c conda-forge -c loop3d --output-folder conda conda --python ${{matrix.python-version}}
Expand Down

0 comments on commit afc205a

Please sign in to comment.