-
Notifications
You must be signed in to change notification settings - Fork 1.1k
remove requirement_dev.txt from project #2277
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,12 +8,8 @@ build: | |
| os: ubuntu-24.04 | ||
| tools: | ||
| python: "3.10" | ||
| commands: | ||
| - pip install --group docs | ||
|
|
||
| sphinx: | ||
| configuration: docs/conf.py | ||
|
|
||
| python: | ||
| install: | ||
| - requirements: requirements_dev.txt | ||
| - method: pip | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think part was just to install the dependencies only. |
||
| path: . | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,6 +48,41 @@ urls.Homepage = "https://github.com/django-commons/django-debug-toolbar" | |
| urls.Issues = "https://github.com/django-commons/django-debug-toolbar/issues" | ||
| urls.Source = "https://github.com/django-commons/django-debug-toolbar" | ||
|
|
||
| [dependency-groups] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please rework the comments here to be more similar to what was used in the requirements file? It looks like things got jostled around.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I will rework this. I think |
||
| dev = [ | ||
| { include-group = "django_async" }, | ||
| { include-group = "docs" }, | ||
| { include-group = "other" }, | ||
| { include-group = "run_time" }, | ||
| { include-group = "test" }, | ||
| ] | ||
| test = [ | ||
| "black", | ||
| "coverage[toml]", | ||
| "django-csp", # Used in tests/test_csp_rendering | ||
| "django-template-partials", | ||
| "html5lib", | ||
| "selenium", | ||
| "tox", | ||
| ] | ||
| docs = [ | ||
| "sphinx", | ||
| "sphinx-rtd-theme>1", | ||
| "sphinxcontrib-spelling", | ||
| ] | ||
| run_time = [ | ||
| "django", | ||
| "jinja2", | ||
| "sqlparse", | ||
| ] | ||
| django_async = [ | ||
| "daphne", # Integration support | ||
| "whitenoise", | ||
| ] | ||
| other = [ | ||
| "pre-commit", | ||
| ] | ||
|
|
||
| [tool.hatch.build.targets.wheel] | ||
| packages = [ | ||
| "debug_toolbar", | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think now this should work