Skip to content

Commit

Permalink
ci: change fiona installation
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ authored Jan 3, 2025
1 parent 22662f3 commit 6be5ab8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/manual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
- name: Install pdm
run: pip install pdm
- name: Generate lock with oldest dependencies
run: pdm lock --lockfile pdm.oldest.lock --strategy no_cross_platform,direct_minimal_versions -G all -dG test
run: |
echo "fiona==1.9.6" >> fiona_constraint.txt
pdm lock --override fiona_constraint.txt --lockfile pdm.oldest.lock --strategy no_cross_platform,direct_minimal_versions -G all -dG test
- name: Install srai and tests dependencies
run: pdm install --lockfile pdm.oldest.lock -G all -dG test --skip=post_install
- name: Run tests with pytest
Expand Down

0 comments on commit 6be5ab8

Please sign in to comment.