From b183c2677cf99e9fec6ad40732f04a1b9f4cb015 Mon Sep 17 00:00:00 2001 From: Adrian Hill Date: Thu, 5 May 2022 13:08:05 +0200 Subject: [PATCH] Remove duplicate Python version requirement from setup.py --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7c0f645..e5b8286 100644 --- a/setup.py +++ b/setup.py @@ -41,8 +41,8 @@ def _get_version(): keywords='jax graph neural networks python machine learning', packages=find_namespace_packages(exclude=['*_test.py']), package_data={'jraph': ['ogb_examples/test_data/*']}, + python_requires='>=3.6', install_requires=[ - 'python_version>="3.6"', 'jax>=0.1.55', 'jaxlib>=0.1.37', 'numpy>=1.18.0', @@ -53,7 +53,6 @@ def _get_version(): 'ogb_examples': ['dm-haiku>=0.0.2', 'absl-py>=0.9', 'optax>=0.0.1', 'pandas>=1.0.5', 'dm-tree>=0.1.5']}, - python_requires='>=3.6', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console',