|
5 | 5 |
|
6 | 6 | dependencies = [ |
7 | 7 | "pytest>=6.0.0", |
8 | | - "mypy>=0.900", |
| 8 | + "mypy>=0.970", |
9 | 9 | "decorator", |
10 | 10 | "pyyaml", |
11 | 11 | "chevron", |
|
15 | 15 |
|
16 | 16 | setup( |
17 | 17 | name="pytest-mypy-plugins", |
18 | | - version="1.9.3", |
| 18 | + version="1.10.0", |
19 | 19 | description="pytest plugin for writing tests for mypy plugins", |
20 | 20 | long_description=readme, |
21 | 21 | long_description_content_type="text/markdown", |
22 | 22 | license="MIT", |
23 | 23 | url="https://github.com/TypedDjango/pytest-mypy-plugins", |
24 | 24 | author="Maksim Kurnikov", |
25 | 25 | |
| 26 | + maintainer="Nikita Sobolev", |
| 27 | + maintainer_email="[email protected]", |
26 | 28 | packages=["pytest_mypy_plugins"], |
27 | 29 | # the following makes a plugin available to pytest |
28 | 30 | entry_points={"pytest11": ["pytest-mypy-plugins = pytest_mypy_plugins.collect"]}, |
29 | 31 | install_requires=dependencies, |
30 | | - python_requires=">=3.6", |
| 32 | + python_requires=">=3.7", |
31 | 33 | package_data={ |
32 | 34 | "pytest_mypy_plugins": ["py.typed"], |
33 | 35 | }, |
34 | 36 | classifiers=[ |
35 | | - "Development Status :: 3 - Alpha", |
| 37 | + "Development Status :: 4 - Beta", |
36 | 38 | "License :: OSI Approved :: MIT License", |
37 | 39 | "Programming Language :: Python :: 3.6", |
38 | 40 | "Programming Language :: Python :: 3.7", |
|
0 commit comments