From 47f79385f70f19ff8e6294297d8add2201129e1a Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 22 Sep 2023 14:44:29 -0400 Subject: [PATCH 1/4] remove fsspec as a test dependency as it doesn't yet support python 3.12 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3f954c247..3e4ba6053 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ docs = [ 'tomli; python_version < "3.11"', ] tests = [ - "fsspec[http]>=2022.8.2", + #"fsspec[http]>=2022.8.2", "lz4>=0.10", "psutil", "pytest>=6", From 556259e005a30c81a05ccc013241eac7c8737a49 Mon Sep 17 00:00:00 2001 From: Brett Graham Date: Mon, 25 Sep 2023 09:43:16 -0400 Subject: [PATCH 2/4] add devdeps parameterization to tox.ini environments Co-authored-by: Zach Burnett --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 87f88ce22..7e78421b6 100644 --- a/tox.ini +++ b/tox.ini @@ -2,8 +2,7 @@ env_list = compatibility coverage - devdep{,-parallel} - py{39,310,311,312}{,-compatibility,-coverage,-jsonschema}{,-parallel} + py{39,310,311,312}{,-compatibility,-coverage,-jsonschema}{,-devdeps}{,-parallel} asdf{-standard,-transform-schemas,-unit-schemas,-wcs-schemas,-coordinates-schemas,-astropy} gwcs jwst From e9204c5f5433c6c7e0b4c6bada634a557cf08e2a Mon Sep 17 00:00:00 2001 From: Brett Date: Wed, 11 Oct 2023 09:17:31 -0400 Subject: [PATCH 3/4] add beta aiohttp devdeps requirement --- requirements-dev.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index a552322cc..93296ae45 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -10,3 +10,6 @@ numpy>=0.0.dev0 # that uses it during these tests will use the development version # which is more likely to work with the above development version of numpy scipy>=0.0.dev0 + +# attempt to get fsspec working with python 3.12 +aiohttp==3.9.0b0 From 2ab548c2f305b6169ebe878f0b350ea3980c8b67 Mon Sep 17 00:00:00 2001 From: Brett Date: Wed, 11 Oct 2023 09:22:29 -0400 Subject: [PATCH 4/4] also re-add fsspec --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 93296ae45..060b2154b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -13,3 +13,4 @@ scipy>=0.0.dev0 # attempt to get fsspec working with python 3.12 aiohttp==3.9.0b0 +fsspec[http]>=2022.8.2