-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from carsongee/rc/0.20.0
Release 0.20.0
- Loading branch information
Showing
6 changed files
with
22 additions
and
15 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
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
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
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
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 @@ | |
Plugin for py.test for doing pylint tests | ||
""" | ||
|
||
# pylint: disable=import-error | ||
from setuptools import setup | ||
|
||
with open("README.rst", encoding="utf-8") as f: | ||
|
@@ -16,24 +16,24 @@ | |
description="pytest plugin to check source code with pylint", | ||
long_description=LONG_DESCRIPTION, | ||
license="MIT", | ||
version="0.19.0", | ||
version="0.20.0", | ||
author="Carson Gee", | ||
author_email="[email protected]", | ||
url="https://github.com/carsongee/pytest-pylint", | ||
packages=["pytest_pylint"], | ||
entry_points={"pytest11": ["pylint = pytest_pylint.plugin"]}, | ||
python_requires=">=3.7", | ||
install_requires=["pytest>=5.4", "pylint>=2.3.0", "toml>=0.7.1"], | ||
install_requires=["pytest>=5.4,<8.0", "pylint>=2.3.0", "toml>=0.7.1"], | ||
setup_requires=["pytest-runner"], | ||
tests_require=["coverage", "flake8", "black", "isort"], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
], | ||
) |
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