Version 0.10.1 release

This commit is contained in:
sobolevn
2022-03-28 16:09:09 +03:00
parent 2fad97af03
commit 4e3f9d6f06
2 changed files with 4 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ dependencies = [
setup( setup(
name="django-stubs-ext", name="django-stubs-ext",
version="0.3.1", version="0.4.0",
description="Monkey-patching and extensions for django-stubs", description="Monkey-patching and extensions for django-stubs",
long_description=readme, long_description=readme,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
@@ -30,7 +30,6 @@ setup(
classifiers=[ classifiers=[
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",

View File

@@ -7,7 +7,7 @@ from setuptools import find_packages
def find_stub_files(name: str) -> List[str]: def find_stub_files(name: str) -> List[str]:
result = [] result = []
for root, dirs, files in os.walk(name): for root, _dirs, files in os.walk(name):
for file in files: for file in files:
if file.endswith(".pyi"): if file.endswith(".pyi"):
if os.path.sep in root: if os.path.sep in root:
@@ -23,7 +23,7 @@ with open("README.md") as f:
dependencies = [ dependencies = [
"mypy>=0.930,<0.950", "mypy>=0.930,<0.950",
"django", "django",
"django-stubs-ext>=0.3.0", "django-stubs-ext>=0.4.0",
"tomli", "tomli",
# Types: # Types:
"typing-extensions", "typing-extensions",
@@ -33,7 +33,7 @@ dependencies = [
setup( setup(
name="django-stubs", name="django-stubs",
version="1.10.0", version="1.10.1",
description="Mypy stubs for Django", description="Mypy stubs for Django",
long_description=readme, long_description=readme,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",