Skip to content

Commit

Permalink
Exclude requests from install_requires dependency list
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenkov committed Nov 27, 2020
1 parent 3325837 commit 53c1317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

- Exclude `requests` from `install_requires` dependency list

# 4.0.0, 24 Nov 2020

- Fix reading empty file or seeking past end of file for s3 backend (PR [#549](https://github.com/RaRe-Technologies/smart_open/pull/549), [@jcushman](https://github.com/jcushman))
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,12 @@ def read(fname):
'pytest-rerunfailures'
]

install_requires = [
'requests',
]

aws_deps = ['boto3']
gcp_deps = ['google-cloud-storage']
azure_deps = ['azure-storage-blob', 'azure-common', 'azure-core']
http_deps = ['requests']

all_deps = install_requires + aws_deps + gcp_deps + azure_deps + http_deps
all_deps = aws_deps + gcp_deps + azure_deps + http_deps

setup(
name='smart_open',
Expand All @@ -83,7 +79,6 @@ def read(fname):
license='MIT',
platforms='any',

install_requires=install_requires,
tests_require=tests_require,
extras_require={
'test': tests_require,
Expand Down

0 comments on commit 53c1317

Please sign in to comment.