From 408735a92670486a7e4ac6ec4c7680fa7cd01489 Mon Sep 17 00:00:00 2001 From: simon987 Date: Tue, 2 Nov 2021 14:38:12 -0400 Subject: [PATCH] Fix git clone --- README.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fa741ad..5b90e03 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Misc utility methods in Python ``` -git+git://github.com/simon987/hexlib.git +git+https://github.com/simon987/hexlib.git ``` \ No newline at end of file diff --git a/setup.py b/setup.py index 0fa63e3..e317bc5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="hexlib", - version="1.63", + version="1.64", description="Misc utility methods", author="simon987", author_email="me@simon987.net", @@ -14,7 +14,7 @@ setup( install_requires=[ "ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard", "u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy", - "matplotlib", "scikit-learn", "fake-useragent @ git+git://github.com/Jordan9675/fake-useragent", + "matplotlib", "scikit-learn", "fake-useragent @ git+https://github.com/Jordan9675/fake-useragent", "requests" ] )