Skip to content

Commit

Permalink
first do version check
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanbasten-ns committed Sep 10, 2024
1 parent 4d09b79 commit 0bd89d3
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

- name: test
run: |
docker compose run -e QT_QPA_PLATFORM=offscreen qgis-desktop make test
docker compose run -e QT_QPA_PLATFORM=offscreen qgis-desktop make check
docker compose run -e QT_QPA_PLATFORM=offscreen qgis-desktop make test
docker compose run -e QT_QPA_PLATFORM=offscreen qgis-desktop make flake8
docker compose run qgis-desktop make docstrings
docker compose run qgis-desktop coveralls || true
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ zip: compile
find /tmp/$(PLUGINNAME) -iname "*.pyc" -delete
cd /tmp; zip -9r $(CURDIR)/$(PLUGINNAME).zip $(PLUGINNAME)

check: compile
check: constraints.txt
# Use pip-compile to check whether all dependencies version constraints are met.
cp constraints.txt requirements.in
pip-compile --dry-run
Expand Down
4 changes: 2 additions & 2 deletions dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
Dependency("cftime", "cftime", ">=1.5.0", False), # threedigrid[results]
Dependency("alembic", "alembic", "==1.8.*", False),
Dependency("threedigrid", "threedigrid", "==2.2.*", False),
Dependency("threedi-schema", "threedi_schema", "==0.219.*", False),
Dependency("threedi-schema", "threedi_schema", "==0.218.*", False),
Dependency("threedi-modelchecker", "threedi_modelchecker", "==2.6.*", False),
Dependency("threedidepth", "threedidepth", "==0.6.3", False),
Dependency("click", "click", ">=8.0", False),
Expand All @@ -71,7 +71,7 @@
), # dep of click and threedi-modelchecker (windows)
Dependency("networkx", "networkx", "", False),
Dependency("condenser", "condenser", ">=0.2.1", False),
Dependency("Shapely", "shapely", "==1.4.1", False),
Dependency("Shapely", "shapely", ">=2.0.0", False),
Dependency("threedigrid-builder", "threedigrid_builder", "==1.14.*", False),
Dependency("hydxlib", "hydxlib", "==1.5.2", False),
Dependency("h5netcdf", "h5netcdf", "", False),
Expand Down

0 comments on commit 0bd89d3

Please sign in to comment.