Skip to content

Commit a421c66

Browse files
authoredApr 17, 2024
PYTHON-4373 Use requirements files for deps (mongodb#1605)
1 parent aa8322e commit a421c66

13 files changed

+40
-34
lines changed
 

‎.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ python:
1616
# Install pymongo itself.
1717
- method: pip
1818
path: .
19-
- requirements: doc/docs-requirements.txt
19+
- requirements: requirements/docs.txt
2020

2121
build:
2222
os: ubuntu-22.04

‎MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ include README.md
22
include LICENSE
33
include THIRD-PARTY-NOTICES
44
include *.ini
5+
include requirements.txt
56
exclude .coveragerc
67
exclude .git-blame-ignore-revs
78
exclude .pre-commit-config.yaml
@@ -16,9 +17,9 @@ recursive-include doc *.js
1617
recursive-include doc *.png
1718
include doc/Makefile
1819
include doc/_templates/layout.html
19-
include doc/docs-requirements.txt
2020
include doc/make.bat
2121
include doc/static/periodic-executor-refs.dot
22+
recursive-include requirements *.txt
2223
recursive-include tools *.py
2324
include tools/README.rst
2425
include green_framework_test.py

‎requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dnspython>=1.16.0,<3.0.0

‎requirements/aws.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pymongo-auth-aws>=1.1.0,<2.0.0
File renamed without changes.

‎requirements/encryption.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pymongo-auth-aws>=1.1.0,<2.0.0
2+
pymongocrypt>=1.6.0,<2.0.0
3+
certifi;os.name=='nt' or sys_platform=='darwin'

‎requirements/gssapi.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pykerberos;os.name!='nt'
2+
winkerberos>=0.5.0;os.name=='nt'

‎requirements/ocsp.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# PyOpenSSL 17.0.0 introduced support for OCSP. 17.1.0 introduced
2+
# a related feature we need. 17.2.0 fixes a bug
3+
# in set_default_verify_paths we should really avoid.
4+
# service_identity 18.1.0 introduced support for IP addr matching.
5+
# Fallback to certifi on Windows if we can't load CA certs from the system
6+
# store and just use certifi on macOS.
7+
# https://www.pyopenssl.org/en/stable/api/ssl.html#OpenSSL.SSL.Context.set_default_verify_paths
8+
certifi;os.name=='nt' or sys_platform=='darwin'
9+
pyopenssl>=17.2.0
10+
requests<3.0.0
11+
cryptography>=2.5
12+
service_identity>=18.1.0

‎requirements/snappy.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python-snappy

‎requirements/test.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pytest>=7

‎requirements/zstd.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zstandard

‎setup.py

+14-31
Original file line numberDiff line numberDiff line change
@@ -137,43 +137,26 @@ def build_extension(self, ext):
137137
ext_modules = []
138138

139139

140-
dependencies = [
141-
"dnspython>=1.16.0,<3.0.0",
142-
]
140+
def parse_reqs_file(fname):
141+
with open(fname) as fid:
142+
lines = [li.strip() for li in fid.readlines()]
143+
return [li for li in lines if li and not li.startswith("#")]
144+
145+
146+
dependencies = parse_reqs_file("requirements.txt")
143147

144148
extras_require = dict(
145-
aws=[
146-
"pymongo-auth-aws>=1.1.0,<2.0.0",
147-
],
148-
encryption=[
149-
"pymongo[aws]",
150-
"pymongocrypt>=1.6.0,<2.0.0",
151-
"certifi;os.name=='nt' or sys_platform=='darwin'",
152-
],
153-
gssapi=["pykerberos;os.name!='nt'", "winkerberos>=0.5.0;os.name=='nt'"],
154-
# PyOpenSSL 17.0.0 introduced support for OCSP. 17.1.0 introduced
155-
# a related feature we need. 17.2.0 fixes a bug
156-
# in set_default_verify_paths we should really avoid.
157-
# service_identity 18.1.0 introduced support for IP addr matching.
158-
# Fallback to certifi on Windows if we can't load CA certs from the system
159-
# store and just use certifi on macOS.
160-
# https://www.pyopenssl.org/en/stable/api/ssl.html#OpenSSL.SSL.Context.set_default_verify_paths
161-
ocsp=[
162-
"certifi;os.name=='nt' or sys_platform=='darwin'",
163-
"pyopenssl>=17.2.0",
164-
"requests<3.0.0",
165-
"cryptography>=2.5",
166-
"service_identity>=18.1.0",
167-
],
168-
snappy=["python-snappy"],
149+
aws=parse_reqs_file("requirements/aws.txt"),
150+
encryption=parse_reqs_file("requirements/encryption.txt"),
151+
gssapi=parse_reqs_file("requirements/gssapi.txt"),
152+
ocsp=parse_reqs_file("requirements/ocsp.txt"),
153+
snappy=parse_reqs_file("requirements/snappy.txt"),
169154
# PYTHON-3423 Removed in 4.3 but kept here to avoid pip warnings.
170155
srv=[],
171156
tls=[],
172157
# PYTHON-2133 Removed in 4.0 but kept here to avoid pip warnings.
173-
zstd=[
174-
"zstandard",
175-
],
176-
test=["pytest>=7"],
158+
zstd=parse_reqs_file("requirements/zstd.txt"),
159+
test=parse_reqs_file("requirements/test.txt"),
177160
)
178161

179162
setup(

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ commands =
144144
[testenv:doc]
145145
description = build sphinx docs
146146
deps =
147-
-rdoc/docs-requirements.txt
147+
-rrequirements/docs.txt
148148
commands =
149149
sphinx-build -W -b html doc ./doc/_build/html
150150

0 commit comments

Comments
 (0)
Please sign in to comment.