From 5633cbfe92af2ea0bc258a4df24460af822158b0 Mon Sep 17 00:00:00 2001 From: 0xdade <0xdade@users.noreply.github.com> Date: Tue, 4 Aug 2020 17:47:32 -0700 Subject: [PATCH] Prepare 1.0.2 release --- Pipfile | 1 - Pipfile.lock | 10 +--------- README.md | 2 +- sephiroth/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 4 insertions(+), 13 deletions(-) diff --git a/Pipfile b/Pipfile index bfaef6d..eeba635 100644 --- a/Pipfile +++ b/Pipfile @@ -12,7 +12,6 @@ twine = "*" [packages] beautifulsoup4 = "~=4.8.2" -dnspython = "~=1.16.0" requests = "~=2.22.0" Jinja2 = "~=2.11.1" netaddr = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 4217136..b7ddc9f 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "0467e0bfc64f46c14d3efb61f537acebe6649088faa3bb1d1e08e5f50d360410" + "sha256": "4de0297a00b9e39a9187a12179f67be03235d66fbabe36759b8de5f4ab215e32" }, "pipfile-spec": 6, "requires": { @@ -39,14 +39,6 @@ ], "version": "==3.0.4" }, - "dnspython": { - "hashes": [ - "sha256:36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01", - "sha256:f69c21288a962f4da86e56c4905b49d11aba7938d3d740e80d9e366ee4f1632d" - ], - "index": "pypi", - "version": "==1.16.0" - }, "idna": { "hashes": [ "sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407", diff --git a/README.md b/README.md index 957c899..064650a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A Python3 script to build cloud block lists for servers. ## Requirements -* Python 3.6+ (Sephiroth makes use of f-strings) +* Python 3.8 ## Setup diff --git a/sephiroth/__init__.py b/sephiroth/__init__.py index b0bb715..6cf205d 100644 --- a/sephiroth/__init__.py +++ b/sephiroth/__init__.py @@ -2,4 +2,4 @@ __maintainer__ = "0xdade" __email__ = "dade@actualcrimes.org" __license__ = "WTFPL" -__version__ = "1.0.1" +__version__ = "1.0.2" diff --git a/setup.py b/setup.py index a838e24..eecfb5d 100644 --- a/setup.py +++ b/setup.py @@ -17,9 +17,9 @@ packages=["sephiroth", "sephiroth.providers"], install_requires=[ "beautifulsoup4 ~= 4.8.2", - "dnspython ~= 1.16.0", "requests ~= 2.22.0", "Jinja2 ~= 2.11.1", + "netaddr~=0.8.0" ], py_modules=["Sephiroth"], include_package_data=True,