Skip to content

Commit

Permalink
Merge pull request #461 from geoadmin/feat-PB-844-upgrade-postgres
Browse files Browse the repository at this point in the history
PB-844: docker compose use postgis version 16
  • Loading branch information
benschs authored Sep 24, 2024
2 parents 674b1ab + 96e4595 commit b46e18d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/tests/test_admin_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,9 +676,9 @@ def test_add_update_item(self):
)

def test_add_item_with_non_standard_projection(self):
geometry = "SRID=4326;POLYGON ((6.146799690987942 46.04410910398307, "\
"7.438647976247294 46.05153158188484, 7.438632420871813 46.951082771871064, "\
"6.125143650928986 46.94353699772178, 6.146799690987942 46.04410910398307))"
geometry = "SRID=4326;POLYGON ((6.1467996909879385 46.0441091039831, "\
"7.438647976247291 46.0515315818849, 7.43863242087181 46.95108277187109, "\
"6.1251436509289805 46.943536997721836, 6.1467996909879385 46.0441091039831))"
text_geometry = "SRID=2056;POLYGON ((2500000 1100000, 2600000 1100000, 2600000 1200000, "\
"2500000 1200000, 2500000 1100000))"
post_data = {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
db:
image: kartoza/postgis:12.0
image: kartoza/postgis:16
environment:
- POSTGRES_DB=${DB_NAME}
- POSTGRES_USER=postgres
Expand Down

0 comments on commit b46e18d

Please sign in to comment.