Skip to content

Commit

Permalink
build: pin rasterio<1.4 (#1334)
Browse files Browse the repository at this point in the history
* build: pin `rasterio<1.4`

* fix fixed updater

* run tests daily
  • Loading branch information
lkstrp authored Sep 27, 2024
1 parent 9919163 commit 0bf72ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
branches:
- master
schedule:
- cron: "0 5 * * TUE"
- cron: "0 5 * * *"

# Cancel any in-progress runs when a new run is triggered
concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-fixed-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: pypsa-eur
activate-environment: ${{ github.event.repository.name }}
environment-file: envs/environment.yaml

- name: Update environment.fixed.yaml
run: |
conda env export --name pypsa-eur-fixed --no-builds > envs/environment.fixed.yaml
conda env export --name ${{ github.event.repository.name }} --no-builds | sed 's/^name: ${{ github.event.repository.name }}$/name: ${{ github.event.repository.name }}-fixed/' > envs/environment.fixed.yaml
- name: Add SPDX header
run: |
Expand Down
2 changes: 1 addition & 1 deletion envs/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ dependencies:
# GIS dependencies:
- cartopy
- descartes
- rasterio!=1.2.10
- rasterio<1.4

- pip:
- tsam>=2.3.1
Expand Down

0 comments on commit 0bf72ca

Please sign in to comment.