Skip to content

Commit 52850a7

Browse files
committed
Prepare for the 2.0.0a1 release
Signed-off-by: Stavros Ntentos <[email protected]>
1 parent 78e5368 commit 52850a7

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## [2.0.0a1] - _tbd; started 2025-10-17_
6+
7+
A small pylint update lead into a full-blown dependency updates.
8+
9+
That, additionally, lead to deprecating Python 3.8 and 3.9 support.
10+
_Technically_, as of writing this, https://devguide.python.org/versions/ does NOT show 3.9 as deprecated.
11+
However, many dependencies have already dropped support for them - and, according to the page, 3.9's deprecation date 2025-10.
12+
13+
### Development details / information
14+
15+
The project will _soon_ ™️ migrate to `uv` for anything related to packaging, testing, and building:
16+
https://github.com/pylint-dev/pylint-pytest/issues/132
17+
518
## [2.0.0a0] - 2024-02-02
619

720
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Requirements:
2828
To install:
2929

3030
```bash
31-
$ pip install pylint-pytest
31+
pip install pylint-pytest
3232
```
3333

3434
## Usage
3535

3636
Enable via command line option `--load-plugins`
3737

3838
```bash
39-
$ pylint --load-plugins pylint_pytest <path_to_your_sources>
39+
pylint --load-plugins pylint_pytest <path_to_your_sources>
4040
```
4141

4242
Or in `.pylintrc`:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pylint-pytest"
7-
version = "2.0.0a0"
7+
version = "2.0.0a1"
88
license = {file = "LICENSE"}
99
description = "A Pylint plugin to suppress pytest-related false positives."
1010

0 commit comments

Comments
 (0)