Skip to content

Commit 06d8297

Browse files
committed
Update to Python 3.11 and removal of constraints
1 parent ea2f11c commit 06d8297

2 files changed

Lines changed: 7 additions & 12 deletions

File tree

constraints.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
cftime<1.1.1;python_version=='3.5'
2-
netCDF4<1.5.4;python_version=='3.5'
3-
pandas<0.25.0;python_version=='3.5'
4-
xarray<0.14.0;python_version=='3.5'

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from setuptools import setup, find_packages
22

33
INSTALL_REQUIRES = [
4-
'jsonschema>=2.6.0,<3.0.0',
5-
'numpy>=1.13.0',
6-
'netCDF4>=1.5.3',
7-
'pandas>=0.24.2',
8-
'xarray>=0.11.3'
4+
'jsonschema>=4.23.0',
5+
'numpy>=2.2.4',
6+
'netCDF4>=1.7.2',
7+
'pandas>=2.2.3',
8+
'xarray>=2025.3.1'
99
]
1010

1111
TESTS_REQUIRE = [
@@ -37,7 +37,7 @@
3737
author_email='projectofficers@emii.org.au',
3838
description='AODN data tools library',
3939
zip_safe=False,
40-
python_requires='>=3.5',
40+
python_requires='>=3.11, <3.12',
4141
install_requires=INSTALL_REQUIRES,
4242
tests_require=TESTS_REQUIRE,
4343
extras_require=EXTRAS_REQUIRE,
@@ -49,8 +49,7 @@
4949
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
5050
'Programming Language :: Python',
5151
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.5',
53-
'Programming Language :: Python :: 3.6',
52+
'Programming Language :: Python :: 3.11',
5453
'Programming Language :: Python :: Implementation :: CPython',
5554
]
5655
)

0 commit comments

Comments
 (0)