-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add pydantic and stop support for python 3.7 PDOK-16629 * use pydantic instead of dicts PDOK-16629 * add support for (validating and generating) (unique) indices and foreign keys in table definitions PDOK-16629 * add test for foreign key violation PDOK-16629 * fix deprecated pydantic model Config PDOK-16629 * turn on gdal exceptions in some test_table_definitions_check PDOK-16629 * perform foreign key violations check on whole gpkg at once PDOK-16629
- Loading branch information
1 parent
0608dcf
commit 725a330
Showing
21 changed files
with
800 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
ARG GDAL_VERSION=3.9.1 | ||
|
||
FROM ghcr.io/osgeo/gdal:alpine-normal-${GDAL_VERSION} AS base | ||
# docker run ghcr.io/osgeo/gdal:alpine-normal-3.9.1 python3 --version > Python 3.11.9 | ||
|
||
LABEL maintainer="Roel van den Berg <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.