Skip to content

Commit 8bae60b

Browse files
committed
Upgade flask-auth to fix #243 (#244)
1 parent c400d97 commit 8bae60b

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

docker/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ RUN pip install \
2929
# Install FOCA
3030
COPY setup.py README.md ./
3131
COPY foca/ ./foca/
32-
RUN pip install . \
32+
RUN pip install --upgrade pkginfo && \
33+
pip install . \
3334
--no-warn-script-location \
3435
--prefix="/install"
3536

requirements.txt

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
addict==2.2.1
2-
celery==5.2.2
3-
connexion>=2.11.2
4-
cryptography==41.0.2
5-
Flask==2.2.5
6-
flask-authz==2.5.0
7-
Flask-Cors==3.0.9
8-
Flask-PyMongo==2.3.0
9-
pydantic==1.10.8
10-
PyJWT==2.4.0
11-
pymongo==3.10.1
12-
PyYAML==6.0.1
13-
requests==2.31.0
14-
swagger-ui-bundle==0.0.6
15-
toml==0.10.0
16-
typing==3.7.4.1
17-
Werkzeug==2.2.3
1+
addict~=2.2
2+
celery~=5.2
3+
connexion~=2.11
4+
cryptography~=42.0
5+
Flask~=2.2
6+
flask-authz~=2.5.1
7+
Flask-Cors~=4.0
8+
Flask-PyMongo~=2.3
9+
pydantic~=2.7
10+
PyJWT~=2.4
11+
pymongo~=4.7
12+
PyYAML~=6.0
13+
requests~=2.31
14+
swagger-ui-bundle~=0.0
15+
toml~=0.10
16+
typing~=3.7
17+
Werkzeug~=2.2

0 commit comments

Comments
 (0)