Skip to content

Commit 24607cb

Browse files
authored
Merge pull request #71 from DMTF/urllib3-update
Allowing for newer versions of urllib3
2 parents 818a4d9 + ee1ad23 commit 24607cb

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.travis.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
dist: xenial
1+
dist: focal
22
language: python
33
cache:
44
- pip
55
python:
6-
- '3.5'
7-
- '3.6'
86
- '3.7'
97
- '3.8'
108
- '3.9'

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ aenum
22
colorama
33
pyasn1
44
pyasn1-modules
5-
requests>=2.23.0
5+
requests>=2.30.0
66
sseclient-py
7-
urllib3<2
7+
urllib3

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
'console_scripts': ['rf_protocol_validator=redfish_protocol_validator.console_scripts:main']
3131
},
3232
install_requires=["aenum", "colorama", "pyasn1", "pyasn1-modules",
33-
"requests>=2.23.0", "sseclient-py", "urllib3<2"]
33+
"requests>=2.30.0", "sseclient-py", "urllib3"]
3434
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35,py36,py37,py38,py39,pep8
2+
envlist = py37,py38,py39,pep8
33
skip_missing_interpreters = True
44

55
[testenv]
@@ -18,6 +18,6 @@ commands =
1818
--cover-html-dir=.cover {posargs}
1919

2020
[testenv:pep8]
21-
basepython = python3.6
21+
basepython = python3.9
2222
deps = flake8
2323
commands = flake8

0 commit comments

Comments
 (0)