Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Python dependencies #1032

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,25 @@
- eslint-config-next 13 -> 14
- next 13 -> 14
- semantic-ui-react 2 -> 3.0.0-beta.2
- Upgrade Python dependencies
- attrs 23.1.0 -> 24.3.0
- certifi 2023.11.17 -> 2024.12.14 (suggested by dependabot)
- flask 3.0.0 -> 3.0.3
- gunicorn 20.1.0 -> 22.0.0 (suggested by dependabot)
- idna 3.6 -> 3.10 (suggested by dependabot)
- importlib-metadata 7.0.0 -> 8.4.0
- jinja2 3.1.2 -> 3.1.4 (suggested by dependabot)
- jsonschema 4.20.0 -> 4.23.0
- lxml 4.9.3 -> 5.3.0
- owslib 0.29.3 -> 0.31.0
- pillow 10.1.0 -> 10.4.0 (suggested by dependabot)
- pipenv 2020.11.15 -> 2024.4.0
- pytz 2023.3.post1 -> 2024.2
- requests 2.31.0 -> 2.32.0
- tornado 6.4.0 -> 6.4.2 (suggested by dependabot)
- urllib3 2.31.0 -> 2.32.0 (suggested by dependabot)
- werkzeug 3.0.1 -> 3.0.6 (suggested by dependabot)
- zipp 3.17.0 -> 3.19.1 (suggested by dependabot)
- All changes from [v1.23.1](#v1231) and [v1.23.2](#v1232).

## v1.23.2
Expand Down
6 changes: 3 additions & 3 deletions doc/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
| name | version | license | used by | env | bin or src | purpose |
| --- | --- | --- | --- | --- | --- | --- |
| [python](https://www.python.org/) | 3.8 | Python Software Foundation License | gdal/docker | prod | bin | to run Layman |
| [python3-lxml](https://lxml.de/installation.html) | 4.5 | BSD 3-Clause | Dockerfile | prod | bin | to query XML with full XPath 1.0 |
| [python3-lxml](https://lxml.de/installation.html) | 5.3 | BSD 3-Clause | Dockerfile | prod | bin | to query XML with full XPath 1.0 |
| [gdal](http://www.gdal.org/) | 3.3.0 | MIT | gdal/docker | prod | bin | to import vector files into DB |
| [firefox](https://www.mozilla.org/firefox/) | 95+ | MPL | Dockerfile | prod | bin | for client-side map rendering and integration testing |
| [firefox-geckodriver](https://www.ubuntuupdates.org/package/ubuntu_mozilla_security/bionic/main/base/firefox-geckodriver) | 95+ | MPL | Dockerfile | prod | bin | for client-side map rendering and integration testing |
| [pipenv](https://pypi.org/project/pipenv/) | 2020.11.15 | MIT | Dockerfile | prod | bin | to install Python dependencies |
| [pipenv](https://pypi.org/project/pipenv/) | 2024.4.0 | MIT | Dockerfile | prod | bin | to install Python dependencies |
| [node.js](https://nodejs.org/) | 22 | MIT | client/docker/Dockerfile | prod | bin | to run Layman Test Client |
| [node.js](https://nodejs.org/) | 16 | MIT | timgen/Dockerfile | prod | bin | to run Timgen |
| [npm](https://www.npmjs.com/get-npm) | 10 | Artistic License 2.0 | client/docker/Dockerfile | prod | bin | to install node.js dependencies |
| [gunicorn](https://gunicorn.org/) | 20 | MIT | requirements.production.txt | opt | bin | as Flask production server |
| [gunicorn](https://gunicorn.org/) | 22 | MIT | requirements.production.txt | opt | bin | as Flask production server |
| [nginx](http://nginx.org/) | 1.16 | BSD 2-Clause | docker-compose.yml | opt | bin | as production server |

### Python dependencies
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM osgeo/gdal:ubuntu-small-3.3.0
RUN apt-get clean && apt-get update && apt-get upgrade -y && \
apt-get -y -qq install nano python3-pip python3-lxml && \
apt-get -y -qq install firefox firefox-geckodriver && \
pip install pipenv==2020.11.15
pip install pipenv==2024.4.0

RUN mkdir /code
RUN chmod 777 /code
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM osgeo/gdal:ubuntu-small-3.3.0
RUN apt-get clean && apt-get update && apt-get upgrade -y && \
apt-get -y -qq install nano python3-pip python3-lxml && \
apt-get -y -qq install firefox firefox-geckodriver && \
pip install pipenv==2020.11.15
pip install pipenv==2024.4.0

RUN mkdir /code
WORKDIR /code
Expand Down
Loading
Loading