Skip to content

Commit

Permalink
Adds support for Python 3.11 (#3083)
Browse files Browse the repository at this point in the history
Modifies the dependency on numba for python versions < 3.11

Follow-up #3082

Fixes #3081
  • Loading branch information
devinrsmith authored Nov 15, 2022
1 parent 14ce63d commit af0a58b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion py/embedded-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def normalize_version(version):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='Deephaven Development',
python_requires='>=3.7',
Expand Down
8 changes: 6 additions & 2 deletions py/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def normalize_version(version):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='Deephaven Development',
python_requires='>=3.7',
Expand All @@ -56,7 +57,10 @@ def normalize_version(version):
'deephaven-plugin',
'numpy',
'pandas',
'numba'
# Numba does not support 3.11 yet
# https://github.com/numba/numba/issues/8304
# TODO(deephaven-core#3082): Remove numba dependency workarounds
'numba; python_version < "3.11"',
],
entry_points={
'deephaven.plugin': ['registration_cls = deephaven.pandasplugin:PandasPluginRegistration']
Expand Down

0 comments on commit af0a58b

Please sign in to comment.