| |
@@ -1,45 +1,46 @@
|
| |
# Used for when working from a virtualenv.
|
| |
# Use this file by running "$ pip install -r requirements.txt"
|
| |
- alembic <= 1.8.1
|
| |
- arrow <= 1.2.3
|
| |
- bcrypt <= 3.2.2
|
| |
- binaryornot == 0.4.4
|
| |
- bleach <= 5.0.1
|
| |
- blinker <= 1.5
|
| |
- celery <= 5.2.6
|
| |
- chardet <= 4.0.0
|
| |
- cryptography <= 36.0.0
|
| |
- docutils <= 0.17.1
|
| |
+ alembic
|
| |
+ arrow
|
| |
+ bcrypt
|
| |
+ binaryornot
|
| |
+ bleach
|
| |
+ blinker
|
| |
+ celery
|
| |
+ chardet
|
| |
+ cryptography
|
| |
+ docutils
|
| |
|
| |
# required for backward compatibility
|
| |
email_validator
|
| |
|
| |
- flask <= 2.2.2
|
| |
+ flask
|
| |
werkzeug < 3.0.0
|
| |
- flask-wtf <= 1.0.0
|
| |
- kitchen == 1.2.6
|
| |
- markdown <= 3.3.7
|
| |
- munch <= 2.5.0
|
| |
- Pillow <= 9.2.0
|
| |
- psutil <= 5.9.2
|
| |
- pygit2 >= 0.26.0, <=1.8.0
|
| |
- python3-openid <= 3.2.0
|
| |
- python-openid-cla == 1.2
|
| |
- python-openid-teams == 1.1
|
| |
- redis <= 3.5.3
|
| |
- requests <= 2.28.1
|
| |
- six <= 1.16.0
|
| |
+ flask-wtf
|
| |
+ kitchen
|
| |
+ markdown
|
| |
+ munch
|
| |
+ Pillow
|
| |
+ psutil
|
| |
+ pygit2 >= 0.26.0
|
| |
+ python3-openid
|
| |
+ python-openid-cla
|
| |
+ python-openid-teams
|
| |
+ redis
|
| |
+ requests
|
| |
|
| |
# required for backward compatibility
|
| |
setuptools
|
| |
|
| |
- sqlalchemy >= 0.8, <=1.4.46
|
| |
- straight.plugin == 1.5.0
|
| |
- whitenoise <= 6.2.0
|
| |
- wtforms <= 3.0.1
|
| |
+ six
|
| |
+ # sqlalchemy minimum 0.8
|
| |
+ sqlalchemy >= 0.8
|
| |
+ straight.plugin >= 1.5.0
|
| |
+ whitenoise
|
| |
+ wtforms
|
| |
|
| |
# Required only for the `oidc` authentication backend
|
| |
- # Important: Until https://github.com/puiterwijk/flask-oidc/pull/144 is merged and a new version of flask-oidc is released,
|
| |
+ # Important: Until https://github.com/puiterwijk/flask-oidc/pull/144 is merged and a new version of flask-oidc is released,
|
| |
# it's necessary to ensure `itsdangerous` is pinned to a version lower as 2.1 as well.
|
| |
# flask-oidc <= 1.4.0
|
| |
# itsdangerous < 2.1
|
| |
@@ -48,4 +49,4 @@
|
| |
# flask-session
|
| |
|
| |
# Required only for the `fas` and `openid` authentication backends
|
| |
- # python-fedora == 1.1.1
|
| |
+ # python-fedora
|
| |
This reverts commit c937675 except
where it makes sense (the temporary pinning of flask-oidc and
itsdangerous due to newer-version incompatibilities).
A conversation can be had about reproducibility (including possibly creating a
requirements-frozen.txt
with==
pinned versions), but doing it in a heavy-handed manner across the entire set of requirements breaks lots of things, especially on different Python versions.Fixes #5441