Skip to content

Commit 0d3fc0a

Browse files
authored
Fix dependencies (#5)
* Fix dependencies * Update setup.py.in
1 parent 3fde3c8 commit 0d3fc0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ if __name__ == '__main__':
4040
'Topic :: Multimedia :: Graphics :: 3D Rendering',
4141
'Topic :: Scientific/Engineering :: Visualization',
4242
],
43+
python_requires = '>=3.10',
4344
install_requires = [
4445
'numpy',
4546
'numpngw >=0.1.4, <0.2',
@@ -49,7 +50,7 @@ if __name__ == '__main__':
4950
'tifffile',
5051
'pooch',
5152
'matplotlib',
52-
'typing_extensions', # required for Python 3.10
53+
'typing_extensions; python_version <= "3.10"',
5354
],
5455
)
5556

0 commit comments

Comments
 (0)