Skip to content

Commit

Permalink
placed limit on urllib3 version for security
Browse files Browse the repository at this point in the history
github warned about a security isse in urllib3. Force use of recent version.
  • Loading branch information
trmrsh committed Jul 22, 2021
1 parent 629764b commit 8178c05
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -90,10 +90,11 @@
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'sep', 'numpy', 'astropy', 'matplotlib', 'requests',
'numba', 'websocket-client', 'fitsio', 'pandas', 'Cython'
'numba', 'websocket-client', 'fitsio', 'pandas', 'Cython',
'urllib3>=1.26.5'
],

# Makes significant use of f-strings which came in in 3.6
# Makes significant use of f-strings which came in 3.6
python_requires='>=3.6',

# need numpy version 1.12
Expand Down

0 comments on commit 8178c05

Please sign in to comment.