From de8f82d3a1b7d7bf0131cbc377bc8c22666f8027 Mon Sep 17 00:00:00 2001 From: Darnell Granberry <40174000+DarnellGranberry@users.noreply.github.com> Date: Mon, 9 Dec 2024 17:31:06 -0500 Subject: [PATCH] Removed spaces, separately specify python version --- conda-build/meta.yaml | 5 ++--- requirements.txt | 17 ++++++++--------- setup.py | 1 + 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/conda-build/meta.yaml b/conda-build/meta.yaml index 0d65920..15f7a02 100644 --- a/conda-build/meta.yaml +++ b/conda-build/meta.yaml @@ -15,7 +15,6 @@ requirements: run: - python>=3.8,<=3.12 - future - - argparse #[py26] - numpy>=1.11 - pandas>=0.20.3 - scikit-learn>=0.19.0 @@ -23,8 +22,8 @@ requirements: - pillow>=6.2.0 - torch>=1.0.0 - torchvision - - tqdm >=4.65.0 - - h5py >=3.7.0 + - tqdm>=4.65.0 + - h5py>=3.7.0 build: noarch: python diff --git a/requirements.txt b/requirements.txt index c5ad4ae..baf38ab 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,10 @@ -python >= 3.8, <= 3.12 -torch >= 1.0.0 +torch>=1.0.0 torchvision -tqdm >= 4.65.0 -h5py >= 3.7.0 -numpy >= 1.11 -pandas >= 0.20.3 -scikit-learn >= 0.19.0 -scipy >= 0.17.0 -pillow >= 6.2.0 +tqdm>=4.65.0 +h5py>=3.7.0 +numpy>=1.11 +pandas>=0.20.3 +scikit-learn>=0.19.0 +scipy>=0.17.0 +pillow>=6.2.0 future \ No newline at end of file diff --git a/setup.py b/setup.py index f2dbef2..aa80078 100644 --- a/setup.py +++ b/setup.py @@ -41,5 +41,6 @@ #package_dir = {'': 'topaz'}, entry_points = {'console_scripts': ['topaz = topaz.main:main']}, include_package_data = True, + python_requires='>=3.8,<=3.12', install_requires=requirements, )