From 63b59baad012902812c05e12a9b840326a0dac9e Mon Sep 17 00:00:00 2001 From: jar3b Date: Fri, 23 Aug 2019 11:12:48 +0300 Subject: [PATCH] fix: fix setup.py --- requirements.txt | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3e03ac0..ccad777 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -git+https://github.com/graham/python_xid.git \ No newline at end of file +git+https://github.com/graham/python_xid.git#egg=xid==1.0.5 \ No newline at end of file diff --git a/setup.py b/setup.py index d20cb12..5be1cc7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='logag-python-handler', - version='0.1.2', + version='0.1.3', packages=['logag_handler'], url='https://gitlab.com/logag/logag-python-handler', license='MIT', @@ -10,6 +10,6 @@ setup( author_email='jar3b@outlook.com', description='Python handler for logag', install_requires=[ - 'xid==1.0.4', + 'git+https://github.com/graham/python_xid.git#egg=xid==1.0.5', ] )