Skip to content
Snippets Groups Projects
Commit 0402e9b0 authored by Philip Elson's avatar Philip Elson :snake:
Browse files

Merge branch 'minimum_jpype_version_for_py38' into 'master'

Update the minimum Python version for JPype1 <= 1.0.1

See merge request !36
parents fccfffe2 370afcae
No related branches found
No related tags found
1 merge request!36Update the minimum Python version for JPype1 <= 1.0.1
Pipeline #1862039 passed
......@@ -17,7 +17,11 @@ with (HERE / 'README.md').open('rt') as fh:
REQUIREMENTS: dict = {
'core': [
'entrypoints',
'JPype1>=0.6.1',
# Older versions of JPype1 do not work in Python 3.8+
# https://github.com/jpype-project/jpype/pull/788
'JPype1>=1.0.1;python_version>="3.8.4"',
'JPype1>=0.6.1;python_version<"3.8.4"',
'requests',
'six',
],
......@@ -38,7 +42,7 @@ setup(
license='MIT',
url='https://gitlab.cern.ch/scripting-tools/cmmnbuild-dep-manager',
packages=find_packages(),
python_requires='>=3.6, <4',
python_requires='~=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment