Skip to content

Commit a9e6f67

Browse files
authored
Version 4.2.6 release (django-stubs only) (typeddjango#1794)
1 parent bef529e commit a9e6f67

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ out/
1111
pip-wheel-metadata/
1212
stubgen/
1313
build/
14+
dist/

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ We rely on different `django` and `mypy` versions:
4949

5050
| django-stubs | Mypy version | Django version | Django partial support | Python version |
5151
|----------------|--------------|----------------|------------------------|----------------|
52+
| 4.2.6 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 |
5253
| 4.2.5 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 |
5354
| 4.2.4 | 1.5.x | 4.2 | 4.1, 3.2 | 3.8 - 3.11 |
5455
| 4.2.3 | 1.4.x | 4.2 | 4.1, 3.2 | 3.8 - 3.11 |

scripts/release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ if [[ -z $(git status -s) ]]
55
then
66
if [[ "$VIRTUAL_ENV" != "" ]]
77
then
8-
pip install --upgrade setuptools wheel twine
8+
pip install --upgrade setuptools wheel twine build
99
rm -rf dist/ build/
10-
python setup.py sdist bdist_wheel
10+
python -m build
1111
twine upload dist/*
1212
rm -rf dist/ build/
1313
else

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def find_stub_files(name: str) -> List[str]:
3737

3838
setup(
3939
name="django-stubs",
40-
version="4.2.5",
40+
version="4.2.6",
4141
description="Mypy stubs for Django",
4242
long_description=readme,
4343
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)