Skip to content

Commit

Permalink
Version 4.2.6 release (django-stubs only) (#1794)
Browse files Browse the repository at this point in the history
  • Loading branch information
intgr committed Oct 23, 2023
1 parent bef529e commit a9e6f67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ out/
pip-wheel-metadata/
stubgen/
build/
dist/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ We rely on different `django` and `mypy` versions:

| django-stubs | Mypy version | Django version | Django partial support | Python version |
|----------------|--------------|----------------|------------------------|----------------|
| 4.2.6 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 |
| 4.2.5 | 1.6.x | 4.2 | 4.1, 3.2 | 3.8 - 3.12 |
| 4.2.4 | 1.5.x | 4.2 | 4.1, 3.2 | 3.8 - 3.11 |
| 4.2.3 | 1.4.x | 4.2 | 4.1, 3.2 | 3.8 - 3.11 |
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ if [[ -z $(git status -s) ]]
then
if [[ "$VIRTUAL_ENV" != "" ]]
then
pip install --upgrade setuptools wheel twine
pip install --upgrade setuptools wheel twine build
rm -rf dist/ build/
python setup.py sdist bdist_wheel
python -m build
twine upload dist/*
rm -rf dist/ build/
else
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def find_stub_files(name: str) -> List[str]:

setup(
name="django-stubs",
version="4.2.5",
version="4.2.6",
description="Mypy stubs for Django",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a9e6f67

Please sign in to comment.