Skip to content

Commit

Permalink
Merge pull request #29 from windpioneers/python-3-12
Browse files Browse the repository at this point in the history
Python 3 12
  • Loading branch information
thclark authored Nov 13, 2024
2 parents f759fd6 + 14020be commit ff1840f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
python: ["3.11", "3.12"]
gdal: ["3.9.3"]
proj: ["9.5.0"]
uv: ["0.5.1"]
Expand Down
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,12 @@ COPY --from=builder /build_gdal_python/usr/ /usr/
COPY --from=builder /build_gdal_version_changing/usr/ /usr/

# Dependencies for working with geo tools, KML libraries, HDF5 (for pytables) and some useful others
RUN apt-get update -y && apt-get install -y --fix-missing --no-install-recommends \
libkml-dev libgeos-dev \
curl autoconf automake bash-completion libpq-dev gcc git \
libhdf5-dev \
RUN apt-get update -y \
&& apt-get install -y --fix-missing --no-install-recommends \
libkml-dev libgeos-dev libpq-dev \
libhdf5-dev \
curl autoconf automake bash-completion build-essential gcc git \
&& apt-get clean \
&& rm -rf /var/cache/apt/lists

RUN ldconfig
Expand Down

0 comments on commit ff1840f

Please sign in to comment.