Skip to content

Commit

Permalink
Version 1.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed May 4, 2023
1 parent 27f6edd commit 50b1196
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Version history


## Version 1.11.0

### Features

- Adds `python3.11` support and promise about `python3.12` support
- Removes `pkg_resources` to use `packaging` instead


## Version 1.10.1

### Bugfixes
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
readme = f.read()

dependencies = [
"pytest>=6.0.0",
"pytest>=6.2.0",
"mypy>=0.970",
"decorator",
"pyyaml",
Expand All @@ -15,7 +15,7 @@

setup(
name="pytest-mypy-plugins",
version="1.10.1",
version="1.11.0",
description="pytest plugin for writing tests for mypy plugins",
long_description=readme,
long_description_content_type="text/markdown",
Expand All @@ -40,6 +40,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
],
)

0 comments on commit 50b1196

Please sign in to comment.