Skip to content

Commit ce6fdc8

Browse files
committed
remove python 3.8 and unify docker images
1 parent 14373c4 commit ce6fdc8

14 files changed

+92
-139
lines changed

.github/workflows/ci.yml

+17-37
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ on:
1717
- '.github/workflows/ci.yml'
1818
pull_request:
1919
env:
20-
LATEST_PY_VERSION: '3.12'
20+
LATEST_PY_VERSION: '3.13'
2121

2222
jobs:
2323
tests:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
27+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2828

2929
steps:
3030
- uses: actions/checkout@v4
@@ -134,12 +134,6 @@ jobs:
134134
needs: [tests]
135135
if: github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
136136
runs-on: ubuntu-latest
137-
strategy:
138-
matrix:
139-
image-version:
140-
- 'uvicorn'
141-
- 'gunicorn'
142-
143137
steps:
144138
- name: Checkout
145139
uses: actions/checkout@v4
@@ -157,40 +151,26 @@ jobs:
157151
username: ${{ github.actor }}
158152
password: ${{ secrets.GITHUB_TOKEN }}
159153

160-
- name: Set tag version
161-
id: tag
162-
run: |
163-
echo "version=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
164-
165-
- name: Image name
166-
id: image
167-
run: |
168-
if [ ${{ matrix.image-version }} = 'uvicorn' ]; then
169-
echo "name=${{ github.repository }}:uvicorn-" >> $GITHUB_OUTPUT
170-
else
171-
echo "name=${{ github.repository }}:" >> $GITHUB_OUTPUT
172-
fi
173-
174-
# Push `latest` when commiting to main
175-
- name: Build and push
176-
if: github.ref == 'refs/heads/main'
177-
uses: docker/build-push-action@v6
154+
- name: Docker meta
155+
id: meta
156+
uses: docker/metadata-action@v5
178157
with:
179-
platforms: linux/amd64,linux/arm64
180-
context: .
181-
file: dockerfiles/Dockerfile.${{ matrix.image-version }}
182-
push: true
158+
images: |
159+
ghcr.io/${{ github.repository }}
160+
flavor: |
161+
latest=false
183162
tags: |
184-
ghcr.io/${{ steps.image.outputs.name }}latest
163+
type=semver,pattern={{version}}
164+
type=raw,value=latest,enable={{is_default_branch}}
185165
186-
# Push `{VERSION}` when pushing a new tag
187166
- name: Build and push
188-
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
189167
uses: docker/build-push-action@v6
190168
with:
191169
platforms: linux/amd64,linux/arm64
192170
context: .
193-
file: dockerfiles/Dockerfile.${{ matrix.image-version }}
194-
push: true
195-
tags: |
196-
ghcr.io/${{ steps.image.outputs.name }}${{ steps.tag.outputs.version }}
171+
file: dockerfiles/Dockerfile
172+
push: ${{ github.event_name != 'pull_request' }}
173+
tags: ${{ steps.meta.outputs.tags }}
174+
labels: ${{ steps.meta.outputs.labels }}
175+
cache-from: type=gha
176+
cache-to: type=gha,mode=max

.github/workflows/deploy_mkdocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Checkout master
2121
uses: actions/checkout@v4
2222

23-
- name: Set up Python 3.8
23+
- name: Set up Python 3.11
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.8
26+
python-version: 3.11
2727

2828
- name: Install dependencies
2929
run: |

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repos:
1111
language_version: python
1212

1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.3.5
14+
rev: v0.8.4
1515
hooks:
1616
- id: ruff
1717
args: ["--fix"]

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Note: Minor version `0.X.0` update might break the API, It's recommended to pin
1010

1111
* fix serialization of UUID columns (author @giorgiobasile, https://github.com/developmentseed/tipg/pull/199)
1212

13+
* Unify Docker images (deprecate `tipg-uvicorn`)
14+
15+
* Remove `python3.8` support
16+
17+
* Add `python3.13` support
18+
1319
## [0.8.0] - 2024-10-17
1420

1521
* update `starlette-cramjam` dependency and set compression-level default to 6

README.md

+13-16
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ More info about configuration options at https://developmentseed.org/tipg/user_g
8888
## Launch
8989

9090
```bash
91-
$ pip install uvicorn
91+
$ python -m pip install uvicorn
9292

9393
# Set your PostGIS database instance URL in the environment
9494
$ export DATABASE_URL=postgresql://username:[email protected]:5432/postgis
@@ -116,32 +116,29 @@ $ docker-compose up app
116116

117117
We are publishing two different docker images on `tag` and on every commit to `main` branch:
118118

119-
| | Gunicorn | Uvicorn |
120-
| -- | -- | -- |
121-
main commit | `ghcr.io/developmentseed/tipg:latest` | `ghcr.io/developmentseed/tipg:uvicorn-latest`
122-
tags | `ghcr.io/developmentseed/tipg:0.0.0` | `ghcr.io/developmentseed/tipg:uvicorn-0.0.0`
123-
dockerfile | [/dockerfiles/Dockerfile.gunicorn](https://github.com/developmentseed/tipg/blob/main/dockerfiles/Dockerfile.gunicorn) | [/dockerfiles/Dockerfile.uvicorn](https://github.com/developmentseed/tipg/blob/main/dockerfiles/Dockerfile.uvicorn)
119+
| | Gunicorn |
120+
| -- | -- |
121+
main commit | `ghcr.io/developmentseed/tipg:latest`
122+
tags | `ghcr.io/developmentseed/tipg:X.X.X`
123+
dockerfile | [/dockerfiles/Dockerfile](https://github.com/developmentseed/tipg/blob/main/dockerfiles/Dockerfile)
124124

125125
See all version at https://github.com/developmentseed/tipg/pkgs/container/tipg
126126

127127
```
128-
# Gunicorn image
129128
$ docker run \
130-
-p 8081:8081 \
131-
-e PORT=8081 \
129+
-p 8000:8000 \
132130
-e DATABASE_URL=postgresql://username:[email protected]:5432/postgis \
133-
ghcr.io/developmentseed/tipg:latest
131+
ghcr.io/developmentseed/tipg:latest \
132+
uvicorn tipg.main:app --host 0.0.0.0 --port 8000 --workers 1
134133
135-
# or Uvicorn image
134+
# using Gunicorn
136135
$ docker run \
137-
-p 8081:8081 \
138-
-e PORT=8081 \
136+
-p 8000:8000 \
139137
-e DATABASE_URL=postgresql://username:[email protected]:5432/postgis \
140-
ghcr.io/developmentseed/tipg:uvicorn-latest
138+
ghcr.io/developmentseed/tipg:latest \
139+
gunicorn -k uvicorn.workers.UvicornWorker tipg.main:app --bind 0.0.0.0:8000 --workers 1
141140
```
142141

143-
Note: If you are planning to use the docker image in a kubernetes deployment you may want to use the `uvicorn` image (ref: https://fastapi.tiangolo.com/deployment/server-workers/).
144-
145142
## Contribution & Development
146143

147144
See [CONTRIBUTING.md](https://github.com/developmentseed/tipg/blob/main/CONTRIBUTING.md)

docker-compose.yml

+2-30
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,9 @@
1-
version: '3'
2-
31
services:
42
app:
53
build:
64
context: .
7-
dockerfile: dockerfiles/Dockerfile.gunicorn
8-
environment:
9-
- HOST=0.0.0.0
10-
- PORT=8081
11-
- PYTHONWARNINGS=ignore
12-
- POSTGRES_USER=username
13-
- POSTGRES_PASS=password
14-
- POSTGRES_DBNAME=postgis
15-
- POSTGRES_HOST=database
16-
- POSTGRES_PORT=5432
17-
- DEBUG=TRUE
18-
ports:
19-
- "${MY_DOCKER_IP:-127.0.0.1}:8081:8081"
20-
depends_on:
21-
- database
22-
command:
23-
bash -c "bash /tmp/scripts/wait-for-it.sh database:5432 --timeout=30 && /start.sh"
24-
volumes:
25-
- ./dockerfiles/scripts:/tmp/scripts
26-
27-
app-uvicorn:
28-
build:
29-
context: .
30-
dockerfile: dockerfiles/Dockerfile.uvicorn
5+
dockerfile: dockerfiles/Dockerfile
316
environment:
32-
- HOST=0.0.0.0
33-
- PORT=8081
34-
- WEB_CONCURRENCY=1
357
- PYTHONWARNINGS=ignore
368
- POSTGRES_USER=username
379
- POSTGRES_PASS=password
@@ -44,7 +16,7 @@ services:
4416
depends_on:
4517
- database
4618
command:
47-
bash -c "bash /tmp/scripts/wait-for-it.sh database:5432 --timeout=30 && uvicorn tipg.main:app --host 0.0.0.0 --port 8081"
19+
bash -c "bash /tmp/scripts/wait-for-it.sh database:5432 --timeout=30 && uvicorn tipg.main:app --host 0.0.0.0 --port 8081 --workers 5"
4820
volumes:
4921
- ./dockerfiles/scripts:/tmp/scripts
5022

dockerfiles/Dockerfile

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
ARG PYTHON_VERSION=3.12
2+
3+
FROM bitnami/python:${PYTHON_VERSION}
4+
RUN apt update && apt upgrade -y \
5+
&& apt install curl -y \
6+
&& rm -rf /var/lib/apt/lists/*
7+
8+
# Ensure root certificates are always updated at evey container build
9+
# and curl is using the latest version of them
10+
RUN mkdir /usr/local/share/ca-certificates/cacert.org
11+
RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/root.crt
12+
RUN cd /usr/local/share/ca-certificates/cacert.org && curl -k -O https://www.cacert.org/certs/class3.crt
13+
RUN update-ca-certificates
14+
ENV CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
15+
16+
RUN python -m pip install -U pip
17+
RUN python -m pip install uvicorn uvicorn-worker gunicorn
18+
19+
COPY README.md README.md
20+
COPY LICENSE LICENSE
21+
COPY tipg/ tipg/
22+
COPY pyproject.toml pyproject.toml
23+
24+
RUN python -m pip install . --no-cache-dir
25+
RUN rm -rf tipg/ README.md pyproject.toml LICENSE
26+
27+
###################################################
28+
# For compatibility (might be removed at one point)
29+
ENV MODULE_NAME=tipg.main
30+
ENV VARIABLE_NAME=app
31+
ENV HOST=0.0.0.0
32+
ENV PORT=80
33+
ENV WEB_CONCURRENCY=1
34+
CMD gunicorn -k uvicorn.workers.UvicornWorker ${MODULE_NAME}:${VARIABLE_NAME} --bind ${HOST}:${PORT} --workers ${WEB_CONCURRENCY}

dockerfiles/Dockerfile.gunicorn

-16
This file was deleted.

dockerfiles/Dockerfile.uvicorn

-21
This file was deleted.

pyproject.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tipg"
33
description = "Simple and Fast Geospatial OGC Features and Tiles API for PostGIS."
44
readme = "README.md"
5-
requires-python = ">=3.8"
5+
requires-python = ">=3.9"
66
license = {file = "LICENSE"}
77
authors = [
88
{name = "Vincent Sarago", email = "[email protected]"},
@@ -13,10 +13,11 @@ classifiers = [
1313
"Intended Audience :: Information Technology",
1414
"Intended Audience :: Science/Research",
1515
"License :: OSI Approved :: BSD License",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2021
"Topic :: Scientific/Engineering :: GIS",
2122
]
2223
dynamic = ["version"]
@@ -33,8 +34,6 @@ dependencies = [
3334
"pygeofilter>=0.2.0,<0.3.0",
3435
"ciso8601~=2.3",
3536
"starlette-cramjam>=0.4,<0.5",
36-
"importlib_resources>=1.1.0; python_version < '3.9'",
37-
"typing_extensions; python_version < '3.9'",
3837
]
3938

4039
[project.optional-dependencies]

tipg/database.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""tipg.db: database events."""
22

33
import pathlib
4+
from importlib.resources import files as resources_files
45
from typing import List, Optional
56

67
import orjson
@@ -11,12 +12,6 @@
1112

1213
from fastapi import FastAPI
1314

14-
try:
15-
from importlib.resources import files as resources_files # type: ignore
16-
except ImportError:
17-
# Try backported to PY<39 `importlib_resources`.
18-
from importlib_resources import files as resources_files # type: ignore
19-
2015
DB_CATALOG_FILE = resources_files(__package__) / "sql" / "dbcatalog.sql"
2116

2217

tipg/dependencies.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
"""tipg dependencies."""
22

33
import re
4-
from typing import Dict, List, Literal, Optional, Tuple, get_args
4+
from typing import Annotated, Dict, List, Literal, Optional, Tuple, get_args
55

66
from ciso8601 import parse_rfc3339
77
from morecantile import Tile
88
from morecantile import tms as default_tms
99
from pygeofilter.ast import AstType
1010
from pygeofilter.parsers.cql2_json import parse as cql2_json_parser
1111
from pygeofilter.parsers.cql2_text import parse as cql2_text_parser
12-
from typing_extensions import Annotated
1312

1413
from tipg.collections import Catalog, Collection, CollectionList
1514
from tipg.errors import InvalidBBox, MissingCollectionCatalog, MissingFunctionParameter

tipg/factory.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@
44
import csv
55
import re
66
from dataclasses import dataclass, field
7-
from typing import Any, Callable, Dict, Generator, Iterable, List, Literal, Optional
7+
from typing import (
8+
Annotated,
9+
Any,
10+
Callable,
11+
Dict,
12+
Generator,
13+
Iterable,
14+
List,
15+
Literal,
16+
Optional,
17+
)
818
from urllib.parse import urlencode
919

1020
import jinja2
@@ -13,7 +23,6 @@
1323
from morecantile import tms as default_tms
1424
from morecantile.defaults import TileMatrixSets
1525
from pygeofilter.ast import AstType
16-
from typing_extensions import Annotated
1726

1827
from tipg import model
1928
from tipg.collections import Collection, CollectionList

0 commit comments

Comments
 (0)