From af0d580132308099f0761f0c7e4f8e32370b8d08 Mon Sep 17 00:00:00 2001 From: neuropacman Date: Mon, 21 Oct 2024 22:34:12 -0400 Subject: [PATCH] fix/allow higher dependency versions --- neuropacs/__init__.py | 2 +- setup.py | 14 +++++--------- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/neuropacs/__init__.py b/neuropacs/__init__.py index f62fa04..cb641da 100644 --- a/neuropacs/__init__.py +++ b/neuropacs/__init__.py @@ -1,7 +1,7 @@ # __init__.py from .sdk import Neuropacs -PACKAGE_VERSION = "1.7.9" +PACKAGE_VERSION = "1.8.0" def init(server_url, api_key, origin_type="API"): return Neuropacs(server_url=server_url, api_key=api_key, origin_type=origin_type) diff --git a/setup.py b/setup.py index d2ecb47..5899b87 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='neuropacs', - version='1.7.9', + version='1.8.0', description='neuropacs Python API', license='MIT', long_description=open('README.md').read(), @@ -12,13 +12,9 @@ url='https://github.com/neuropacs/neuropacs-py-sdk', packages=find_packages(), install_requires=[ - 'cryptography==41.0.1', - 'pycryptodome==3.20.0', - 'requests==2.31.0', - 'rsa==4.9', - 'urllib3==1.26.6', - 'zipp==3.17.0', - 'tqdm==4.66.1' + 'cryptography>=41.0.1', + 'pycryptodome>=3.20.0', + 'requests>=2.31.0', ], classifiers=[ 'Development Status :: 4 - Beta', @@ -28,7 +24,7 @@ ], ) -# To update this SDK: +# To update this package: # 1. Remove /build /dist /neuropacs.egg-info # 2. Update version in setup.py and __init__.py # 3. Run: python setup.py sdist bdist_wheel