Pin dependencies
This commit is contained in:
parent
ef98bac08f
commit
47757fe762
2 changed files with 90 additions and 81 deletions
|
@ -51,6 +51,12 @@ A popular and beginner friendly way is
|
|||
|
||||
Detailed instructions can be found [here <img height="12" style="display: inline-block" src="static/link/to_gh.png">](https://github.com/webartifex/intro-to-python#installation).
|
||||
|
||||
As this project assumes a couple of third-party packages
|
||||
that are *not* part of the Anaconda Distribution,
|
||||
it is most likely necessary
|
||||
to run the command `pip install -r requirements.txt`
|
||||
before working with the notebook files.
|
||||
|
||||
|
||||
## Contributing
|
||||
|
||||
|
|
165
requirements.txt
165
requirements.txt
|
@ -1,82 +1,85 @@
|
|||
appdirs==1.4.4
|
||||
astroid==2.4.2
|
||||
attrs==19.3.0
|
||||
backcall==0.2.0
|
||||
black==19.10b0
|
||||
bleach==3.1.5
|
||||
certifi==2020.6.20
|
||||
chardet==3.0.4
|
||||
click==7.1.2
|
||||
cycler==0.10.0
|
||||
decorator==4.4.2
|
||||
defusedxml==0.6.0
|
||||
entrypoints==0.3
|
||||
idna==2.10
|
||||
importlib-metadata==1.7.0
|
||||
ipykernel==5.3.0
|
||||
ipython==7.16.1
|
||||
ipython-genutils==0.2.0
|
||||
isort==4.3.21
|
||||
jedi==0.17.1
|
||||
Jinja2==2.11.2
|
||||
joblib==0.15.1
|
||||
json5==0.9.5
|
||||
jsonschema==3.2.0
|
||||
jupyter-client==6.1.3
|
||||
jupyter-core==4.6.3
|
||||
jupyterlab==2.1.5
|
||||
jupyterlab-server==1.1.5
|
||||
kiwisolver==1.2.0
|
||||
lazy-object-proxy==1.4.3
|
||||
MarkupSafe==1.1.1
|
||||
matplotlib==3.2.2
|
||||
mccabe==0.6.1
|
||||
anyio==3.1.0; python_full_version >= "3.6.2" and python_version >= "3.6"
|
||||
appnope==0.1.2; sys_platform == "darwin" and python_version >= "3.7" and platform_system == "Darwin"
|
||||
argon2-cffi==20.1.0; python_version >= "3.6"
|
||||
async-generator==1.10; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
attrs==21.2.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
babel==2.9.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6"
|
||||
backcall==0.2.0; python_version >= "3.7"
|
||||
bleach==3.3.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
certifi==2020.12.5; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
cffi==1.14.5; implementation_name == "pypy" and python_version >= "3.6"
|
||||
chardet==4.0.0; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
colorama==0.4.4; python_version >= "3.7" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.7" and python_full_version >= "3.5.0"
|
||||
cycler==0.10.0; python_version >= "3.7"
|
||||
decorator==5.0.9; python_version >= "3.7"
|
||||
defusedxml==0.7.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
entrypoints==0.3; python_version >= "3.6"
|
||||
idna==2.10; python_full_version >= "3.6.2" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6")
|
||||
ipykernel==5.5.5; python_version >= "3.6"
|
||||
ipython-genutils==0.2.0; python_version >= "3.7"
|
||||
ipython==7.23.1; python_version >= "3.7"
|
||||
jedi==0.18.0; python_version >= "3.7"
|
||||
jinja2==3.0.1; python_version >= "3.6"
|
||||
joblib==1.0.1; python_version >= "3.6"
|
||||
json5==0.9.5; python_version >= "3.6"
|
||||
jsonschema==3.2.0; python_version >= "3.6"
|
||||
jupyter-client==6.2.0; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
jupyter-core==4.7.1; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
jupyter-server==1.8.0; python_version >= "3.6"
|
||||
jupyterlab-pygments==0.1.2; python_version >= "3.6"
|
||||
jupyterlab-server==2.5.2; python_version >= "3.6"
|
||||
jupyterlab==3.0.16; python_version >= "3.6"
|
||||
kiwisolver==1.3.1; python_version >= "3.7"
|
||||
markupsafe==2.0.1; python_version >= "3.6"
|
||||
matplotlib-inline==0.1.2; python_version >= "3.7"
|
||||
matplotlib==3.4.2; python_version >= "3.7"
|
||||
missingno==0.4.2
|
||||
mistune==0.8.4
|
||||
nbconvert==5.6.1
|
||||
nbformat==5.0.7
|
||||
notebook==6.0.3
|
||||
numpy==1.19.0
|
||||
packaging==20.4
|
||||
pandas==1.0.5
|
||||
pandocfilters==1.4.2
|
||||
parso==0.7.0
|
||||
pathspec==0.8.0
|
||||
patsy==0.5.1
|
||||
pexpect==4.8.0
|
||||
pickleshare==0.7.5
|
||||
prometheus-client==0.8.0
|
||||
prompt-toolkit==3.0.5
|
||||
ptyprocess==0.6.0
|
||||
Pygments==2.6.1
|
||||
pylint==2.5.3
|
||||
pyparsing==2.4.7
|
||||
pyrsistent==0.16.0
|
||||
python-dateutil==2.8.1
|
||||
pytz==2020.1
|
||||
pyzmq==19.0.1
|
||||
regex==2020.6.8
|
||||
requests==2.24.0
|
||||
scikit-learn==0.23.1
|
||||
scipy==1.5.0
|
||||
seaborn==0.10.1
|
||||
Send2Trash==1.5.0
|
||||
six==1.15.0
|
||||
sklearn==0.0
|
||||
statsmodels==0.11.1
|
||||
tabulate==0.8.7
|
||||
terminado==0.8.3
|
||||
testpath==0.4.4
|
||||
threadpoolctl==2.1.0
|
||||
toml==0.10.1
|
||||
tornado==6.0.4
|
||||
tqdm==4.47.0
|
||||
traitlets==4.3.3
|
||||
typed-ast==1.4.1
|
||||
urllib3==1.25.9
|
||||
wcwidth==0.2.5
|
||||
webencodings==0.5.1
|
||||
wrapt==1.12.1
|
||||
xlrd==1.2.0
|
||||
xlwt==1.3.0
|
||||
zipp==3.1.0
|
||||
mistune==0.8.4; python_version >= "3.6"
|
||||
nbclassic==0.3.1; python_version >= "3.6"
|
||||
nbclient==0.5.3; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
nbconvert==6.0.7; python_version >= "3.6"
|
||||
nbformat==5.1.3; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
nest-asyncio==1.5.1; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
notebook==6.4.0; python_version >= "3.6"
|
||||
numpy==1.20.3; python_version >= "3.7"
|
||||
packaging==20.9; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
pandas==1.2.4; python_full_version >= "3.7.1"
|
||||
pandocfilters==1.4.3; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6"
|
||||
parso==0.8.2; python_version >= "3.7"
|
||||
patsy==0.5.1; python_version >= "3.6"
|
||||
pexpect==4.8.0; sys_platform != "win32" and python_version >= "3.7"
|
||||
pickleshare==0.7.5; python_version >= "3.7"
|
||||
pillow==8.2.0; python_version >= "3.7"
|
||||
prometheus-client==0.10.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6"
|
||||
prompt-toolkit==3.0.18; python_full_version >= "3.6.1" and python_version >= "3.7"
|
||||
ptyprocess==0.7.0; sys_platform != "win32" and python_version >= "3.7" and os_name != "nt"
|
||||
py==1.10.0; python_version >= "3.6" and python_full_version < "3.0.0" and implementation_name == "pypy" or implementation_name == "pypy" and python_version >= "3.6" and python_full_version >= "3.4.0"
|
||||
pycparser==2.20; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6"
|
||||
pygments==2.9.0; python_version >= "3.7"
|
||||
pyparsing==2.4.7; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.7"
|
||||
pyrsistent==0.17.3; python_version >= "3.6"
|
||||
python-dateutil==2.8.1; python_full_version >= "3.7.1" and python_version >= "3.7" and (python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0" and python_version >= "3.7")
|
||||
pytz==2021.1; python_full_version >= "3.7.1" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6")
|
||||
pywin32==300; sys_platform == "win32" and python_version >= "3.6"
|
||||
pywinpty==1.1.1; os_name == "nt" and python_version >= "3.6"
|
||||
pyzmq==22.0.3; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
requests==2.25.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
|
||||
scikit-learn==0.24.2; python_version >= "3.6"
|
||||
scipy==1.6.1; python_version >= "3.7"
|
||||
seaborn==0.11.1; python_version >= "3.6"
|
||||
send2trash==1.5.0; python_version >= "3.6"
|
||||
six==1.16.0; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.7"
|
||||
sniffio==1.2.0; python_full_version >= "3.6.2" and python_version >= "3.6"
|
||||
statsmodels==0.12.2; python_version >= "3.6"
|
||||
tabulate==0.8.9
|
||||
terminado==0.10.0; python_version >= "3.6"
|
||||
testpath==0.5.0; python_version >= "3.6"
|
||||
threadpoolctl==2.1.0; python_version >= "3.6"
|
||||
tornado==6.1; python_full_version >= "3.6.1" and python_version >= "3.6"
|
||||
tqdm==4.61.0; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.4.0")
|
||||
traitlets==5.0.5; python_full_version >= "3.6.1" and python_version >= "3.7"
|
||||
urllib3==1.26.4; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version < "4" and python_version >= "3.6"
|
||||
wcwidth==0.2.5; python_full_version >= "3.6.1" and python_version >= "3.7"
|
||||
webencodings==0.5.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
|
||||
websocket-client==1.0.1; python_version >= "3.6"
|
||||
xlrd==2.0.1; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.6.0")
|
||||
|
|
Loading…
Reference in a new issue