From 22934757c2deda30c13f39ec425343182fa91a89 Mon Sep 17 00:00:00 2001 From: evamaxfield Date: Sun, 21 Aug 2022 22:14:13 -0700 Subject: [PATCH] Install fsspec 2022.7.1 --- pyproject.toml | 2 +- setup.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index 60c9d57..fdc04b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ classifiers = [ dynamic = ["version"] dependencies = [ "aicsimageio[all]>=4.6.3", - "fsspec[http]", # no version pin, we pull from aicsimageio + "fsspec[http]>=2022.7.1", # version pin to support aicspylibczi "napari>=0.4.11", "psutil>=5.7.0", # Formats not included by default with aicsimageio diff --git a/setup.py b/setup.py deleted file mode 100644 index 9ae5cfa..0000000 --- a/setup.py +++ /dev/null @@ -1,6 +0,0 @@ -# This file is only needed for editable installs (using pyproject.toml) -# until setuptools implements PEP 660 -# https://github.com/pypa/setuptools/issues/2816 -import setuptools - -setuptools.setup()