Skip to content

Commit

Permalink
chore: Relax dependencies for installation (#150)
Browse files Browse the repository at this point in the history
This commit relaxes dependencies, not pinning them to a specific version, so they can work with newer versions, and requiring requests>=2.23, urllib3>=1.25.8 instead of requests==2.24, urllib3==1.25.10
  • Loading branch information
tembleking authored Oct 13, 2020
1 parent 0f7d12b commit 6718738
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 84 deletions.
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ sdcclient = {editable = true, path = "."}
coverage = "*"

[packages]
requests = "*"
requests = ">=2.23.0"
pyaml = "*"
requests-toolbelt = "*"
tatsu = "*"
urllib3 = ">=1.25.8"

[requires]
python_version = "3.8"
159 changes: 86 additions & 73 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="sdcclient",
version="0.13.0",
version="0.13.1",
description="Python client for Sysdig Cloud",
url="http://github.com/sysdiglabs/sysdig-sdk-python",
author="Sysdig Inc.",
Expand All @@ -23,15 +23,15 @@
),
python_requires=">=3.8, <4",
install_requires=[
"certifi==2020.6.20",
"chardet==3.0.4",
"idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pyaml==20.4.0",
"pyyaml==5.3.1",
"requests==2.24.0",
"requests-toolbelt==0.9.1",
"tatsu==5.5.0",
"urllib3==1.25.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"certifi>=2020.6.20",
"chardet>=3.0.4",
"idna>=2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"pyaml>=20.4.0",
"pyyaml>=5.3.1",
"requests>=2.23.0",
"requests-toolbelt>=0.9.1",
"tatsu>=5.5.0",
"urllib3>=1.25.8",
],
extras_require={"dev": []},
project_urls={
Expand Down

0 comments on commit 6718738

Please sign in to comment.