Skip to content

Commit

Permalink
Removed spaces, separately specify python version
Browse files Browse the repository at this point in the history
  • Loading branch information
DarnellGranberry committed Dec 9, 2024
1 parent ea7098d commit de8f82d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
5 changes: 2 additions & 3 deletions conda-build/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@ requirements:
run:
- python>=3.8,<=3.12
- future
- argparse #[py26]
- numpy>=1.11
- pandas>=0.20.3
- scikit-learn>=0.19.0
- scipy>=0.17.0
- 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
Expand Down
17 changes: 8 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit de8f82d

Please sign in to comment.