Skip to content

Commit

Permalink
upgrade 1D (#405)
Browse files Browse the repository at this point in the history
Adapt modelchecker to 1D migration (228)
  • Loading branch information
margrietpalm authored Nov 25, 2024
1 parent ccbc6fe commit 64f0057
Show file tree
Hide file tree
Showing 13 changed files with 2,160 additions and 2,096 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changelog of threedi-modelchecker
2.13.1 (unreleased)
-------------------

- Nothing changed yet.
- Modify existing checks to work with schema changes for 1D


2.13.0 (2024-10-14)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies = [
"Click",
"GeoAlchemy2>=0.9,!=0.11.*",
"SQLAlchemy>=1.4",
"threedi-schema==0.227.*"
"threedi-schema==0.228.*"
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion threedi_modelchecker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .model_checks import * # NOQA

# fmt: off
__version__ = '2.13.1.dev0'
__version__ = '2.14.0.dev1'
# fmt: on
1 change: 1 addition & 0 deletions threedi_modelchecker/checks/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

class CheckLevel(IntEnum):
ERROR = 40
FUTURE_ERROR = 39
WARNING = 30
INFO = 20

Expand Down
Loading

0 comments on commit 64f0057

Please sign in to comment.