From 8430ff12619a0ac51fd7f4527b97ad2e87d4825f Mon Sep 17 00:00:00 2001 From: stubsabot <> Date: Sat, 19 Nov 2022 00:11:43 +0000 Subject: [PATCH 1/5] [stubsabot] Bump python-slugify to 7.0.* Release: https://pypi.org/pypi/python-slugify/7.0.0 Homepage: https://github.com/un33k/python-slugify Diff: https://github.com/un33k/python-slugify/compare/v6.1.2...v7.0.0 Stubsabot analysis of the diff between the two releases: - 0 public Python files have been added. - 0 files included in typeshed's stubs have been deleted. - 2 files included in typeshed's stubs have been modified or renamed: `slugify/__init__.py`, `slugify/__version__.py`. - Total lines of Python code added: 11. - Total lines of Python code deleted: 3. If stubtest fails for this PR: - Leave this PR open (as a reminder, and to prevent stubsabot from opening another PR) - Fix stubtest failures in another PR, then close this PR Note that you will need to close and re-open the PR in order to trigger CI --- stubs/python-slugify/METADATA.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/python-slugify/METADATA.toml b/stubs/python-slugify/METADATA.toml index fd1708405831..6fe7d4c5a6ee 100644 --- a/stubs/python-slugify/METADATA.toml +++ b/stubs/python-slugify/METADATA.toml @@ -1,4 +1,4 @@ -version = "6.1.*" +version = "7.0.*" [tool.stubtest] ignore_missing_stub = false From 9b25f6e37bd271d79c420fca34df794f0159db9d Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Fri, 18 Nov 2022 16:20:25 -0800 Subject: [PATCH 2/5] more exports --- stubs/python-slugify/slugify/__init__.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/python-slugify/slugify/__init__.pyi b/stubs/python-slugify/slugify/__init__.pyi index 1a7847377d10..e5a73129b4c8 100644 --- a/stubs/python-slugify/slugify/__init__.pyi +++ b/stubs/python-slugify/slugify/__init__.pyi @@ -1,2 +1,3 @@ from .slugify import * from .special import * +from .__version__ import * From 2298a4e24461064302281051115453ee15d9ff33 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 19 Nov 2022 00:21:38 +0000 Subject: [PATCH 3/5] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/python-slugify/slugify/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/python-slugify/slugify/__init__.pyi b/stubs/python-slugify/slugify/__init__.pyi index e5a73129b4c8..25395869cb4f 100644 --- a/stubs/python-slugify/slugify/__init__.pyi +++ b/stubs/python-slugify/slugify/__init__.pyi @@ -1,3 +1,3 @@ +from .__version__ import * from .slugify import * from .special import * -from .__version__ import * From 00e273a4eded6e5d69204c7732b5d8f8acdc6841 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Fri, 18 Nov 2022 16:22:40 -0800 Subject: [PATCH 4/5] underscores --- stubs/python-slugify/slugify/__init__.pyi | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/stubs/python-slugify/slugify/__init__.pyi b/stubs/python-slugify/slugify/__init__.pyi index 25395869cb4f..ef3afb5b9666 100644 --- a/stubs/python-slugify/slugify/__init__.pyi +++ b/stubs/python-slugify/slugify/__init__.pyi @@ -1,3 +1,10 @@ -from .__version__ import * +from .__version__ import __title__ +from .__version__ import __author__ +from .__version__ import __author_email__ +from .__version__ import __description__ +from .__version__ import __url__ +from .__version__ import __license__ +from .__version__ import __copyright__ +from .__version__ import __version__ from .slugify import * from .special import * From a1dc351cf24030b1d811843acc3077e86bc4f880 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 19 Nov 2022 00:23:50 +0000 Subject: [PATCH 5/5] [pre-commit.ci] auto fixes from pre-commit.com hooks --- stubs/python-slugify/slugify/__init__.pyi | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/stubs/python-slugify/slugify/__init__.pyi b/stubs/python-slugify/slugify/__init__.pyi index ef3afb5b9666..21d40adacdf4 100644 --- a/stubs/python-slugify/slugify/__init__.pyi +++ b/stubs/python-slugify/slugify/__init__.pyi @@ -1,10 +1,12 @@ -from .__version__ import __title__ -from .__version__ import __author__ -from .__version__ import __author_email__ -from .__version__ import __description__ -from .__version__ import __url__ -from .__version__ import __license__ -from .__version__ import __copyright__ -from .__version__ import __version__ +from .__version__ import ( + __author__, + __author_email__, + __copyright__, + __description__, + __license__, + __title__, + __url__, + __version__, +) from .slugify import * from .special import *