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

Update dependencies again #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Use a Python base image
FROM python:3.8-slim
FROM python:3.9-slim

COPY requirements.txt /requirements.txt
RUN pip install -r requirements.txt

# arcgis needs to be installed separately because of issues when including the requirement with a flag in
# requirements.txt
RUN pip install arcgis==1.9.0 --no-deps
RUN pip install arcgis==1.9.1 --no-deps

WORKDIR /kartograafr/
COPY . /kartograafr/
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Note: this does not include arcgis, which needs to be installed manually when using virtualenv.
# Use the following command: pip install arcgis --no-deps

beautifulsoup4==4.9.3
beautifulsoup4==4.10.0
cachetools==4.2.4
ntlm-auth==1.5.0
python-dateutil==2.8.2
requests==2.26.0
Expand Down