summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman <val@neekware.com>2021-05-05 19:31:49 -0400
committerVal Neekman <val@neekware.com>2021-05-05 19:31:49 -0400
commitb9b6a9712b6ece99d70ddfe623cf9236ecba945f (patch)
tree67110972ec07270c1122e9fa67bc7ec031e2ba62
parent663668942eed647957b0ddb8914ca152128418b2 (diff)
parent744c7cd98948915158ea91d2ab13af038116043f (diff)
downloadpython-slugify-b9b6a9712b6ece99d70ddfe623cf9236ecba945f.tar.gz
Merge branch 'staging'5.0.1
-rw-r--r--.vscode/settings.json3
-rw-r--r--CHANGELOG.md4
-rw-r--r--dev.requirements.txt3
-rw-r--r--slugify/__init__.py2
4 files changed, 8 insertions, 4 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 32531ea..2ab09c1 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,4 @@
{
"python.linting.pylintEnabled": false,
- "restructuredtext.confPath": "",
- "python.pythonPath": "/usr/local/opt/python/bin/python3.6"
+ "python.pythonPath": "/usr/bin/python3",
} \ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 82ae711..d7d425b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 5.0.1
+
+- Drop support for python 2.7, 3.5 & tox, clean up
+
## 5.0.0
- Add support for Py 3.9 - added tox (@jon-betts - Thx)
diff --git a/dev.requirements.txt b/dev.requirements.txt
index cbc5494..337aa36 100644
--- a/dev.requirements.txt
+++ b/dev.requirements.txt
@@ -1 +1,2 @@
-pycodestyle==2.7.0 \ No newline at end of file
+pycodestyle==2.7.0
+twine==3.4.1 \ No newline at end of file
diff --git a/slugify/__init__.py b/slugify/__init__.py
index 3a11fd2..a1193b8 100644
--- a/slugify/__init__.py
+++ b/slugify/__init__.py
@@ -4,4 +4,4 @@ from .slugify import *
__author__ = 'Val Neekman @ Neekware Inc. [@vneekman]'
__description__ = 'A Python slugify application that also handles Unicode'
-__version__ = '5.0.0'
+__version__ = '5.0.1'