mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-16 18:15:09 +00:00
ad858cd699
requests depends on urllib3<1.26.0, while urllib3==1.26.0 was just released. We need to introduce a constraint on urllib3 to avoid the following error when running `pip install -e`: pkg_resources.ContextualVersionConflict: (urllib3 1.26.0 (./venv/lib/python3.7/site-packages), Requirement.parse('urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1'), {'requests'}) We will be able to remove this constraint once requests becomes compatible with urllib3==1.26.0. To test this change just run `pip install -e tutor` and then run a dummy command, such as `tutor local stop`.
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
appdirs
|
|
click>=7.0
|
|
click_repl
|
|
pycryptodome
|
|
jinja2>=2.9
|
|
kubernetes
|
|
pyyaml>=4.2b1
|
|
|
|
# Installing urllib3==1.26.0 causes compatibility errors with requests==2.24.0
|
|
urllib3<1.26.0 |