Skip to content

Commit

Permalink
fix: pyproj issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nickumia-reisys committed Jul 25, 2023
1 parent 77ccfc0 commit f99bbb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ ADD \

ENV CLASSPATH=${CLASSPATH}:/usr/lib/jvm/java-11-openjdk/saxon/saxon.jar

# Pinned for build issue: https://stackoverflow.com/a/76044568
RUN pip install pip==23.1.1
# Pinned for build issue: https://github.com/pyproj4/pyproj/issues/1321
RUN pip install --upgrade pip
# RUN python3 -m pip install 'cython<3'
# RUN python3 -m pip install --no-use-pep517 pyproj==3.4.1
RUN python3 -m pip install pyproj@git+https://github.com/pyproj4/pyproj.git@main

COPY . $APP_DIR/

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ pyOpenSSL>22.10 #pinning to fix error with crypto (https://levelup.gitconnected.
# ckantoolkit # included as dep of ckanext-harvest
GeoAlchemy2==0.5.0
Shapely>=1.2.13
pyproj==3.4.1
OWSLib==0.28.1
lxml>=2.3
argparse
Expand Down

0 comments on commit f99bbb4

Please sign in to comment.