-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72417ac
commit 745b7f2
Showing
1 changed file
with
98 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[tool.poetry] | ||
name = "strawberry-graphql-django" | ||
packages = [{ include = "strawberry_django" }] | ||
version = "0.49.1" | ||
version = "0.50.0" | ||
description = "Strawberry GraphQL Django extension" | ||
authors = [ | ||
"Lauri Hintsala <[email protected]>", | ||
"Thiago Bellini Ribeiro <[email protected]>", | ||
"Lauri Hintsala <[email protected]>", | ||
"Thiago Bellini Ribeiro <[email protected]>", | ||
] | ||
maintainers = ["Thiago Bellini Ribeiro <[email protected]>"] | ||
repository = "https://github.com/strawberry-graphql/strawberry-django" | ||
|
@@ -14,20 +14,20 @@ license = "MIT" | |
readme = "README.md" | ||
keywords = ["graphql", "api", "django", "strawberry-graphql"] | ||
classifiers = [ | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Framework :: Django", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Framework :: Django", | ||
"Framework :: Django :: 4.2", | ||
"Framework :: Django :: 5.0", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -74,91 +74,91 @@ preview = true | |
|
||
[tool.ruff.lint] | ||
extend-select = [ | ||
"A", | ||
"ASYNC", | ||
"B", | ||
"BLE", | ||
"C4", | ||
"COM", | ||
"D", | ||
"D2", | ||
"D3", | ||
"D4", | ||
"DTZ", | ||
"E", | ||
"ERA", | ||
"EXE", | ||
"F", | ||
"FURB", | ||
"G", | ||
"I", | ||
"ICN001", | ||
"INP", | ||
"ISC", | ||
"N", | ||
"PERF", | ||
"PGH", | ||
"PIE", | ||
"PL", | ||
"PT", | ||
"PTH", | ||
"PYI", | ||
"Q", | ||
"RET", | ||
"RSE", | ||
"RUF", | ||
"SIM", | ||
"SLF", | ||
"SLOT", | ||
"T10", | ||
"T20", | ||
"TCH", | ||
"TID", | ||
"TRY", | ||
"UP", | ||
"W", | ||
"YTT", | ||
"A", | ||
"ASYNC", | ||
"B", | ||
"BLE", | ||
"C4", | ||
"COM", | ||
"D", | ||
"D2", | ||
"D3", | ||
"D4", | ||
"DTZ", | ||
"E", | ||
"ERA", | ||
"EXE", | ||
"F", | ||
"FURB", | ||
"G", | ||
"I", | ||
"ICN001", | ||
"INP", | ||
"ISC", | ||
"N", | ||
"PERF", | ||
"PGH", | ||
"PIE", | ||
"PL", | ||
"PT", | ||
"PTH", | ||
"PYI", | ||
"Q", | ||
"RET", | ||
"RSE", | ||
"RUF", | ||
"SIM", | ||
"SLF", | ||
"SLOT", | ||
"T10", | ||
"T20", | ||
"TCH", | ||
"TID", | ||
"TRY", | ||
"UP", | ||
"W", | ||
"YTT", | ||
] | ||
extend-ignore = [ | ||
"A005", | ||
"D1", | ||
"D203", | ||
"D213", | ||
"D417", | ||
"E203", | ||
"PGH003", | ||
"PLR09", | ||
"SLF001", | ||
"TRY003", | ||
"PLR6301", | ||
"PLC0415", | ||
# ruff formatter recommends to disable those | ||
"COM812", | ||
"COM819", | ||
"D206", | ||
"E111", | ||
"E114", | ||
"E117", | ||
"E501", | ||
"ISC001", | ||
"Q000", | ||
"Q001", | ||
"Q002", | ||
"Q003", | ||
"W191", | ||
"A005", | ||
"D1", | ||
"D203", | ||
"D213", | ||
"D417", | ||
"E203", | ||
"PGH003", | ||
"PLR09", | ||
"SLF001", | ||
"TRY003", | ||
"PLR6301", | ||
"PLC0415", | ||
# ruff formatter recommends to disable those | ||
"COM812", | ||
"COM819", | ||
"D206", | ||
"E111", | ||
"E114", | ||
"E117", | ||
"E501", | ||
"ISC001", | ||
"Q000", | ||
"Q001", | ||
"Q002", | ||
"Q003", | ||
"W191", | ||
] | ||
exclude = [ | ||
".eggs", | ||
".git", | ||
".hg", | ||
".mypy_cache", | ||
".tox", | ||
".venv", | ||
"__pycached__", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
".eggs", | ||
".git", | ||
".hg", | ||
".mypy_cache", | ||
".tox", | ||
".venv", | ||
"__pycached__", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
] | ||
|
||
[tool.ruff.lint.per-file-ignores] | ||
|