Skip to content

Commit

Permalink
fix/allow higher dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
neuropacman committed Oct 22, 2024
1 parent 7ddf7da commit af0d580
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion neuropacs/__init__.py
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
14 changes: 5 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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',
Expand All @@ -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
Expand Down

0 comments on commit af0d580

Please sign in to comment.