Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-41547: Remove test dependencies from s3 and https deps #80

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/DM-41547.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Installing optional dependencies for ``s3`` and ``https`` will no longer pull in libraries only required for running unit tests (``moto`` and ``responses``).
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ requires-python = ">=3.11.0"
[project.optional-dependencies]
s3 = [
"boto3 >= 1.13",
"moto >= 1.3",
"backoff >= 1.10",
]
https = [
"astropy >= 4.0",
"requests >= 2.26.0",
"urllib3 >= 1.25.10",
"responses >= 0.12.0",
"defusedxml",
]
gs = [
"google-cloud-storage",
]
test = [
"moto >= 1.3",
"pytest >= 3.2",
"pytest-openfiles >= 0.5.0",
"responses >= 0.12.0",
]

[tool.setuptools.packages.find]
Expand Down