Skip to content

Commit a7f3b22

Browse files
committed
➕ [#379] add Python3.11 to CI and docs
1 parent 6cd1477 commit a7f3b22

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-python@v5
3333
with:
34-
python-version: '3.10'
34+
python-version: '3.11'
3535
- uses: actions/setup-node@v4
3636
with:
3737
node-version: '18'

.github/workflows/code-quality.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-python@v5
1313
with:
14-
python-version: '3.10'
14+
python-version: '3.11'
1515
- uses: isort/isort-action@v1
1616
with:
1717
requirementsFiles: requirements/dev.txt
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-python@v5
2828
with:
29-
python-version: '3.10'
29+
python-version: '3.11'
3030
- name: Install dependencies
3131
run: |
3232
pip install -r requirements/dev.txt

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4545
libgdal-dev \
4646
&& rm -rf /var/lib/apt/lists/*
4747

48-
COPY --from=backend-build /usr/local/lib/python3.10 /usr/local/lib/python3.10
48+
COPY --from=backend-build /usr/local/lib/python3.11 /usr/local/lib/python3.11
4949
COPY --from=backend-build /usr/local/bin/uwsgi /usr/local/bin/uwsgi
5050
COPY --from=backend-build /usr/local/bin/celery /usr/local/bin/celery
5151

INSTALL.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Prerequisites
1818

1919
You need the following libraries and/or programs:
2020

21-
* `Python`_ 3.10 or above
21+
* `Python`_ 3.11 or above
2222
* Python `Virtualenv`_ and `Pip`_
2323
* `PostgreSQL`_ 12 or above with PostGIS extension
2424
* `Node.js`_

0 commit comments

Comments
 (0)