Skip to content

Commit

Permalink
Relax ipywidgets constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Aug 10, 2023
1 parent 9a97e5f commit f039278
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,23 @@
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.11'
],
python_requires='>=3',
install_requires=[
'ipywidgets>=7.5.1,<8'
'ipywidgets>=7.5.1,<9',
'pandas',
'pytz'
],
extras_require={
'test': [
'pytest'
]
},
zip_safe=False,
include_package_data=True,
packages=find_packages(),
Expand Down

0 comments on commit f039278

Please sign in to comment.