Skip to content

Commit

Permalink
Install base and packaging dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Sep 6, 2023
1 parent 0714a91 commit 3065758
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/builder_releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,6 @@ jobs:
- name: Get source code
uses: actions/checkout@v3

# - name: Cache conda
# uses: actions/cache@v3
# with:
# path: ~/conda_pkgs_dir
# key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('requirements/conda-env-dev.yml') }}

# - name: Setup conda environment
# uses: conda-incubator/setup-miniconda@v2
# with:
# activate-environment: dicogis-dev
# auto-update-conda: true
# channels: conda-forge,defaults
# channel-priority: true
# environment-file: requirements/conda-env-dev.yml
# python-version: ${{ env.PYTHON_VERSION }}
# use-only-tar-bz2: true

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand All @@ -108,7 +91,9 @@ jobs:
- name: Install project requirements
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U -r requirements/base.txt
python -m pip install -U https://github.com/cgohlke/geospatial-wheels/releases/download/v2023.4.22/GDAL-3.6.4-cp310-cp310-win_amd64.whl
python -m pip install -U -r requirements/packaging.txt
- name: Install project as a package
run: python -m pip install -e .[gdal]
Expand Down

0 comments on commit 3065758

Please sign in to comment.