diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index be379eaf..96651860 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -42,7 +42,7 @@ jobs: pip install -U pip setuptools - python setup.py install + pip install . if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi diff --git a/setup.py b/setup.py index 3eedcf5c..35fff3b7 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ url='https://github.com/pcmanus/ccm', packages=['ccmlib', 'ccmlib.cmds', 'ccmlib.utils'], scripts=[ccmscript], - install_requires=['pyYaml', 'psutil', 'requests', 'packaging', 'boto3', 'tqdm'], + install_requires=['pyYaml', 'psutil', 'requests', 'packaging', 'boto3', 'tqdm', 'urllib3<2'], tests_require=['pytest'], classifiers=[ "License :: OSI Approved :: Apache Software License",