Skip to content

Commit 11d6cf2

Browse files
authored
Merge pull request #57 from elixir-cloud-aai/fix-gha
Fix GitHub Actions
2 parents 649d493 + 145dd42 commit 11d6cf2

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010

1111
INSTALL_DEPS = ['kubernetes==9.0.0',
1212
'requests>=2.20.0',
13-
'urllib3==2.6.3',
14-
'boto3==1.42.30',
13+
14+
# urllib3 constraint
15+
'urllib3>=1.26,<2.0 ; python_version < "3.10"',
16+
'urllib3>=2.0,<3.0 ; python_version >= "3.10"',
17+
18+
# boto3 constraint
19+
'boto3<=1.28 ; python_version == "3.8"',
20+
'boto3>=1.28 ; python_version >= "3.9"',
1521
]
1622
TEST_DEPS = [ 'pytest',
1723
'pyfakefs',

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ skip_missing_interpreters = True
66

77
[gh-actions]
88
python =
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310

0 commit comments

Comments
 (0)