-
-
Notifications
You must be signed in to change notification settings - Fork 402
/
dev-requirements.txt
31 lines (31 loc) · 1.04 KB
/
dev-requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# These are requirements to develop Sopel itself.
coveralls>=2.0
flake8>=5
flake8-coding
flake8-future-import
flake8-import-order
flake8-type-checking; python_version >= '3.8'
# Sphinx theme
furo==2023.9.10
pytest~=7.4
pytest-vcr~=1.0.2
requests-mock~=1.9.3
sphinx>=7.1.0,<8; python_version <= '3.8'
sphinx>=7.2.0,<8; python_version > '3.8'
# specify exact autoprogram version because the new (in 2021) maintainer
# showed that they will indeed make major changes in patch versions
sphinxcontrib-autoprogram==0.1.8
# custom plugin to help with RFC links
sphinx-rfcsection~=0.1.1
# use fork of vcrpy 5.x until kevin1024/vcrpy#777 is (hopefully) accepted
# (or until py3.9 EOL... in 10/2025, I HOPE NOT)
vcrpy @ git+https://github.com/sopel-irc/vcrpy@uncap-urllib3
# type check
# often breaks CI on master, so pin and update deliberately, on our own terms
mypy==1.11.2
# for `pkg_resources`; first version in which it's typed
# we don't use `pkg_resources` directly, but mypy still cares
setuptools>=71.1
sqlalchemy[mypy]>=1.4,<1.5
types-pytz
types-requests>=2,<3