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

Move dev dependencies into the [dev] extras #386

Merged
merged 1 commit into from
Oct 19, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ dynamic = ["version"]
[project.optional-dependencies]
braintree = ["braintree>=3.14.0"]
cybersource = ["suds-community>=0.6"]
dev = [
"coverage",
"mock",
"pytest",
"pytest-cov",
"pytest-django",
]
docs = ["sphinx_rtd_theme"]
mercadopago = ["mercadopago>=2.0.0,<3.0.0"]
sagepay = ["cryptography>=1.1.0"]
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ ignore_outcome =
ignore_errors =
djmain: True
deps=
coverage
dj22: Django>=2.2,<3.0
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
Expand All @@ -22,13 +21,10 @@ deps=
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
djmain: https://github.com/django/django/archive/main.tar.gz
mock
pytest
pytest-cov
pytest-django
extras=
braintree
cybersource
dev
mercadopago
sagepay
sofort
Expand Down
Loading