-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathPipfile
33 lines (31 loc) · 836 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[dev-packages]
fabric = "<2"
[packages]
boto3 = "*"
openpyxl = "*"
psycopg2-binary = "*"
Flask = "3.0.3"
Werkzeug = "*" # https://stackoverflow.com/a/77214086/102476
# SQLAlchemy 1.4.x introduced a regression with flask-sqlalchemy
# https://github.com/pallets/flask-sqlalchemy/issues/971
# Keep pinned at 1.3.21
# and flask-sqlalchemy at the compatible 2.5.1
SQLAlchemy = "2.0.36"
flask-sqlalchemy = "3.1.1"
flask-cors = "*"
flask-caching = "*"
redis = "*"
gunicorn = "*"
celery = "*"
pandas = "*"
# Different GDAL (C) versions on Dokku and local dev
# mean unfortunate monkeying around with this.
# For now needs to be 3.6.2 for Dokku
# (as installed by apt-get install gdal-bin on a python:3.11 container)
gdal = "==3.6.2"
# but 3.0.4 for Joe
#gdal = "==3.0.4"
requests = "*"
newrelic = "==9.6.0"
[requires]
python_version = "3.11"