Skip to content
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

Improve packaging + Release v1.1.3rc1 #19

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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