Skip to content

Commit

Permalink
Merge pull request #19 from stdedos/release/v1.1.3rc1
Browse files Browse the repository at this point in the history
See more details in #19
  • Loading branch information
stdedos committed Oct 19, 2023
2 parents 4971561 + 85dd457 commit cb653a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ A heartfelt thank you to https://github.com/Pierre-Sassoulas for his invaluable

- Added an extensive `.pre-commit-config.yaml` file to upkeep the code quality.
It includes, among others, `black`, `mypy` (in non-strict mode yet), `ruff`, and `pylint`.
- Added an automated release process

### Changed

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
prune tests/
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
[aliases]
test = pytest

[bdist_wheel]
universal = 1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="pylint-pytest",
version="1.1.3rc0",
version="1.1.3rc1",
author="Stavros Ntentos",
author_email="[email protected]",
license="MIT",
Expand All @@ -26,7 +26,7 @@
description="A Pylint plugin to suppress pytest-related false positives.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests", "sandbox"]),
packages=find_packages(exclude=["tests*", "sandbox"]),
install_requires=[
"pylint<3",
"pytest>=4.6",
Expand Down

0 comments on commit cb653a0

Please sign in to comment.