Skip to content

Commit cbc4476

Browse files
Merge pull request #100 from developmentseed/UpdatefromTiFeatures
update dbmodel
2 parents 9eb77c6 + ece527e commit cbc4476

File tree

6 files changed

+277
-146
lines changed

6 files changed

+277
-146
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
26+
python-version: ['3.8', '3.9', '3.10', '3.11']
2727

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

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* renamed `timvt.db.table_index` to `timvt.dbmodel.get_table_index`
2525
* default to only view tables within the `public` schema
2626
* renamed *base exception class* to `TiMVTError`
27+
* remove python 3.7 support
2728

2829
## 0.7.0 (2022-06-09)
2930

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "timvt"
33
description = "A lightweight PostGIS based dynamic vector tile server."
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 = "[email protected]"},
@@ -12,10 +12,10 @@ 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",
1817
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.11",
1919
"Topic :: Scientific/Engineering :: GIS",
2020
]
2121
dynamic = ["version"]
@@ -27,6 +27,7 @@ dependencies = [
2727
"morecantile>=3.1,<4.0",
2828
"starlette-cramjam>=0.3,<0.4",
2929
"importlib_resources>=1.1.0; python_version < '3.9'",
30+
"typing_extensions; python_version < '3.9.2'",
3031
]
3132

3233
[project.optional-dependencies]

0 commit comments

Comments
 (0)