From 8c256164d19373972666df4aad8f5b81a7b56e68 Mon Sep 17 00:00:00 2001 From: s-weigand Date: Sun, 6 Nov 2022 21:21:55 +0100 Subject: [PATCH 1/3] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Raised=20minimum=20dep?= =?UTF-8?q?endency=20version=20to=20releases=20that=20support=20py310?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I looked up the dependency version on conda-forge and checked if they have a Build starting with 'py310' mamba search | grep py310 --- setup.cfg | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7bc97bcce..ffcd65194 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,18 +34,17 @@ install_requires = asteval>=0.9.22 attrs>=22.1.0 click>=8.1.3 - netCDF4>=1.5.3 - numba>=0.52 - numpy>=1.20.0,<1.24 + netCDF4>=1.5.7 + numba>=0.55.0 + numpy>=1.21.2,<1.24 odfpy>=1.4.1 - openpyxl>=3.0.9 - pandas>=1.2.0 + openpyxl>=3.0.10 + pandas>=1.3.4 rich>=10.9.0 ruamel.yaml>=0.17.17 - scipy>=1.3.2 + scipy>=1.7.2 sdtfile>=2020.8.3 setuptools>=41.2 - tabulate>=0.8.8 xarray>=2022.3.0 python_requires = >=3.10, <3.11 setup_requires = From 891606e4980035feaa18c17e5b76d99acb621f2d Mon Sep 17 00:00:00 2001 From: s-weigand Date: Sun, 6 Nov 2022 22:17:24 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=A7=B9=20Removed=20dependency=20on=20?= =?UTF-8?q?setuptools?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index ffcd65194..4a3cd6cd2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -44,11 +44,9 @@ install_requires = ruamel.yaml>=0.17.17 scipy>=1.7.2 sdtfile>=2020.8.3 - setuptools>=41.2 + tabulate>=0.8.9 xarray>=2022.3.0 python_requires = >=3.10, <3.11 -setup_requires = - setuptools>=58.0.4 tests_require = pytest zip_safe = True From cea5369167108c79e2097c0b10c3e19510a61dd0 Mon Sep 17 00:00:00 2001 From: s-weigand Date: Sun, 6 Nov 2022 22:36:01 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=9A=A7=F0=9F=93=9A=20Added=20change?= =?UTF-8?q?=20to=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 4824f9b68..d60d0c54b 100644 --- a/changelog.md +++ b/changelog.md @@ -51,6 +51,7 @@ - ♻️ Use validation action and validation as a git submodule (#1165) - 🧹 Upgrade syntax to py310 using pyupgrade (#1162) - 🧹 Remove unused 'type: ignore' (#1168) +- 🚧 Raise minimum dependency version to releases that support py310 (#1170) (changes-0_6_0)=