From 4bb8e4f02a9ebe6e696a1950fa0067cd8fc88438 Mon Sep 17 00:00:00 2001 From: David Megginson Date: Wed, 17 May 2023 12:48:21 -0400 Subject: [PATCH] Use libhxl-python dev HEAD for development, instead of pulling from PyPi. --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 46a5267..1f38ece 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ urllib3>=1.21.1<1.27 # version required by requests -#git+https://github.com/HXLStandard/libhxl-python.git@dev#egg=libhxl # for development -libhxl==4.29 # for release +git+https://github.com/HXLStandard/libhxl-python.git@dev#egg=libhxl # for development +#libhxl==4.29 # for release ckanapi>=3.5 flask-caching flask>=2.1.2 diff --git a/setup.py b/setup.py index b7ffe0f..19c1359 100755 --- a/setup.py +++ b/setup.py @@ -27,8 +27,8 @@ zip_safe = False, install_requires=[ 'urllib3>=1.21.1,<1.27', # version required by requests - #'libhxl @ git+https://github.com/HXLStandard/libhxl-python.git@dev', # for development - 'libhxl==4.29', # for release + 'libhxl @ git+https://github.com/HXLStandard/libhxl-python.git@dev', # for development + #'libhxl==4.29', # for release 'ckanapi>=3.5', 'flask-caching', 'flask>=2.1.2',