Skip to content

Commit c34d15d

Browse files
fix: deps resolution
1 parent 47cd87d commit c34d15d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,14 @@ def read_version():
6969
"pytest-rerunfailures==10.2",
7070
"pytest-timeout==2.1.0",
7171
"pytest-xdist==2.4.0",
72-
"coverage==6.1.2",
72+
"coverage>=5.2, <6.2",
7373
"mock==4.0.3",
7474
"contextlib2==21.6.0",
7575
"awslogs==0.14.0",
7676
"black==22.1.0",
7777
"stopit==1.1.2",
7878
"apache-airflow==1.10.11",
79+
"attrs>=17.4.0, <21.4.0",
7980
"fabric==2.6.0",
8081
"requests==2.27.1",
8182
"sagemaker-experiments==0.1.35",

tox.ini

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ markers =
5959
timeout: mark a test as a timeout.
6060

6161
[testenv]
62+
pip_version = pip==21.3
6263
passenv =
6364
AWS_ACCESS_KEY_ID
6465
AWS_SECRET_ACCESS_KEY
@@ -116,6 +117,8 @@ changedir = doc
116117
# pip install requirements.txt is separate as RTD does it in separate steps
117118
# having the requirements.txt installed in deps above results in Double Requirement exception
118119
# https://github.com/pypa/pip/issues/988
120+
deps =
121+
pip==21.3
119122
commands =
120123
pip install --exists-action=w -r requirements.txt
121124
sphinx-build -T -W -b html -d _build/doctrees-readthedocs -D language=en . _build/html

0 commit comments

Comments
 (0)