Skip to content

Commit 8545fcc

Browse files
committed
update requirement and python versions
1 parent 6def23b commit 8545fcc

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

‎.github/workflows/ci.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ on:
1616
- 'dockerfiles/**'
1717
pull_request:
1818
env:
19-
LATEST_PY_VERSION: '3.9'
19+
LATEST_PY_VERSION: '3.10'
2020

2121
jobs:
2222
tests:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ['3.7', '3.8', '3.9']
26+
python-version: ['3.8', '3.9', '3.10']
2727

2828
steps:
2929
- uses: actions/checkout@v2

‎dockerfiles/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION=3.9
1+
ARG PYTHON_VERSION=3.10
22

33
FROM ghcr.io/vincentsarago/uvicorn-gunicorn:${PYTHON_VERSION}
44

‎dockerfiles/Dockerfile.db‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM ghcr.io/vincentsarago/postgis:13-3.1
1+
FROM ghcr.io/vincentsarago/postgis:14-3.3
22

33
COPY data/*.sql /docker-entrypoint-initdb.d/

‎pyproject.toml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tifeatures"
33
description = "Simple and Fast Geospatial Features API for PostGIS."
44
readme = "README.md"
5-
requires-python = ">=3.7"
5+
requires-python = ">=3.8"
66
license = {file = "LICENSE"}
77
authors = [
88
{name = "Vincent Sarago", email = "vincent@developmentseed.com"},
@@ -12,9 +12,9 @@ classifiers = [
1212
"Intended Audience :: Information Technology",
1313
"Intended Audience :: Science/Research",
1414
"License :: OSI Approved :: BSD License",
15-
"Programming Language :: Python :: 3.7",
1615
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
17+
"Programming Language :: Python :: 3.10",
1818
"Topic :: Scientific/Engineering :: GIS",
1919
]
2020
dynamic = ["version"]
@@ -24,7 +24,7 @@ dependencies = [
2424
"fastapi>=0.77",
2525
"jinja2>=2.11.2,<4.0.0",
2626
"geojson-pydantic>=0.4.0",
27-
"pygeofilter",
27+
"pygeofilter>=0.2.0,<0.3.0",
2828
"ciso8601~=2.2.0",
2929
"starlette-cramjam>=0.3,<0.4",
3030
"importlib_resources>=1.1.0; python_version < '3.9'",

0 commit comments

Comments
 (0)