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

Make this pip-installable with the dev extra again (bonus: no more Dependency Confusion Vulnerabilities) #443

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 39 additions & 41 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers =

[options]
install_requires =
appdirs>=1.4
appdirs~=1.4.4
bs4==0.0.1
certifi==2020.4.5.1
chardet==3.0.4
Expand All @@ -44,20 +44,20 @@ install_requires =
openapi-schema-validator==0.1.4
openpyxl~=3.0.7
pandas==1.3.4
python-dateutil>=2.8
python-dateutil~=2.9.0.post0
python-jose[cryptography]
pytz==2020.1
requests>=2.23
six>=1.14
soupsieve>=2.0
urllib3>=1.25
requests~=2.32.3
six~=1.16.0
soupsieve~=2.6
urllib3~=2.2.3
waitress==2.0.0
Werkzeug==0.16.0
wheel
xlrd>=1.2
xmlschema==1.5.1
xmltodict>=0.12
zipp>=3.1
xmltodict~=0.13.0
zipp~=3.20.2
zip_safe = False
include_package_data = True
package_dir =
Expand All @@ -69,41 +69,39 @@ test_suite = pds_doi_service.test.suite

[options.extras_require]
dev =
build
black
wheel
flake8
flake8-bugbear
flake8-docstrings
pep8-naming
mypy
pydocstyle
coverage
pytest
pytest-cov
pytest-watch
pytest-xdist
pre-commit
build~=1.2.2
black~=24.8.0
flake8~=7.1.1
flake8-bugbear~=24.8.19
flake8-docstrings~=1.7.0
pep8-naming~=0.14.1
mypy~=1.11.2
pydocstyle~=6.3.0
coverage~=7.6.1
pytest~=8.3.3
pytest-cov~=5.0.0
pytest-watch~=4.2.0
pytest-xdist~=3.6.1
pre-commit~=2.20.0
sphinx==3.2.1
sphinxcontrib-napoleon
tox==3.28.0
flask_testing==0.8.0
sphinx-rtd-theme==0.5.0
sphinx-argparse==0.2.5
behave==1.2.6
allure-behave==2.8.13
behave-testrail-reporter==0.4.0
sphinxcontrib-napoleon~=0.7
tox~=3.28.0
flask_testing~=0.8.0
sphinx-rtd-theme~=0.5.0
sphinx-argparse~=0.2.5
behave~=1.2.6
allure-behave~=2.8.13
behave-testrail-reporter~=0.4.0
pygit2~=1.9.2
lxml-stubs
pandas-stubs
types-flask
types-jsonschema
types-pkg_resources
types-python-dateutil
types-requests
types-six
types-waitress
virtualenv==20.8.1
lxml-stubs~=0.5.1
pandas-stubs~=2.0.1.230501
types-flask~=1.1.6
types-jsonschema~=4.23.0.20240813
types-python-dateutil~=2.9.0.20240906
types-requests~=2.32.0.20240914
types-six~=1.16.21.20240513
types-waitress~=3.0.0.20240423
virtualenv~=20.8.1

# 👉 Note: The ``-stubs`` and ``types-`` dependencies above ↑ in the ``dev``
# extra must be duplicated in ``.pre-commit-config.yaml`` in order for ``tox``
Expand Down
Loading