From db23acd46cddff3afdce129628378fa4bfbe7dca Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 4 May 2020 16:17:35 +0000 Subject: [PATCH 1/2] Update python-slugify requirement from ~=3.0.2 to ~=4.0.0 Updates the requirements on [python-slugify](https://github.com/un33k/python-slugify) to permit the latest version. - [Release notes](https://github.com/un33k/python-slugify/releases) - [Changelog](https://github.com/un33k/python-slugify/blob/master/CHANGELOG.md) - [Commits](https://github.com/un33k/python-slugify/compare/3.0.2...4.0.0) Signed-off-by: dependabot-preview[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 4bf2ab2..99047a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ python-dateutil~=2.8.0 requests~=2.23.0 -python-slugify~=3.0.2 +python-slugify~=4.0.0 testtools==2.4.0 From cc5fbcd3a7220bc1613f291c9c26d7571a3c81f9 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Mon, 4 May 2020 12:19:30 -0400 Subject: [PATCH 2/2] Bump slugify to 4.0.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6401cf3..0eef52e 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ THIS_DIR = abspath(dirname(__file__)) REQUIRES = [ "python-dateutil~=2.8.0", "requests~=2.23.0", - "python-slugify~=3.0.2", + "python-slugify~=4.0.0", ] PACKAGES = find_packages(exclude=['tests*', 'docs'])