-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tmp will be squashed, CI debug by YAML hell
- Loading branch information
Carl Crowder
committed
Oct 22, 2023
1 parent
8fd812b
commit 342c591
Showing
3 changed files
with
13 additions
and
9 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ readme = "README.rst" | |
description = "A Pylint plugin to help Pylint understand the Django web framework" | ||
repository = "https://github.com/PyCQA/pylint-django" | ||
authors = ["Carl Crowder <[email protected]>"] | ||
classifiers=[ | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
|
@@ -17,6 +17,7 @@ classifiers=[ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Framework :: Django :: 2.2", | ||
"Framework :: Django :: 3", | ||
"Framework :: Django :: 3.0", | ||
|
@@ -28,25 +29,24 @@ classifiers=[ | |
"Framework :: Django :: 4.2", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
] | ||
keywords=["pylint", "django", "plugin"] | ||
keywords = ["pylint", "django", "plugin"] | ||
packages = [ | ||
{ include = "pylint_django/"} | ||
{ include = "pylint_django/" } | ||
] | ||
include = [ | ||
"LICENSE", | ||
"*.rst", | ||
"*.md" | ||
"LICENSE", | ||
"*.rst", | ||
"*.md" | ||
] | ||
exclude = ["**/tests/**", "**/testutils.py", "**/tests.py"] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7,<4.0" | ||
pylint-plugin-utils = ">=0.8" | ||
pylint = ">=2.0,<3" | ||
Django = {version=">=2.2", optional = true} | ||
Django = { version = ">=2.2", optional = true } | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.3.1" | ||
tox = "^4.5.1" | ||
pylint = ">=2.13" | ||
twine = "^4.0.2" | ||
|
@@ -55,6 +55,7 @@ pytest-cov = "^4.0.0" | |
django-tables2 = "^2.6.0" | ||
factory-boy = "^3.3.0" | ||
django-tastypie = "^0.14.6" | ||
pytest = "^7.3.1" | ||
|
||
[tool.poetry.extras] | ||
with_django = ["Django"] | ||
|
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,2 +1,5 @@ | ||
#!/bin/bash | ||
# TODO : find out why tox refuses to install this or install any dev dependencies from poetry :-| | ||
pip install 'pytest>=7.3.1' | ||
|
||
python pylint_django/tests/test_func.py -v "$@" |
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