Skip to content

Commit

Permalink
remove conda-forge, add fsspec(torch), limit torch ver, v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DarnellGranberry committed Jan 7, 2025
1 parent 7b44cf2 commit 0aee22d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ More information on conda environments can be found [here](https://conda.io/docs

To install the precompiled Topaz package and its dependencies, including pytorch:
```
conda install topaz -c tbepler -c pytorch -c conda-forge
conda install topaz fsspec -c tbepler -c pytorch
```
This installs pytorch from the official channel. To install pytorch for specific cuda versions, you will need to add the 'cudatoolkit=X.X' package. E.g. to install pytorch for CUDA 9.0:
```
conda install cudatoolkit=9.0 -c pytorch
```
or combined into a single command:
```
conda install topaz cudatoolkit=9.0 -c tbepler -c pytorch -c conda-forge
conda install topaz fsspec cudatoolkit=9.0 -c tbepler -c pytorch
```
See [here](https://pytorch.org/get-started/locally/) for additional pytorch installation instructions.

Expand Down
4 changes: 2 additions & 2 deletions conda-build/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package:

source:
git_url: https://github.com/tbepler/topaz.git
git_tag: v0.3.5 # Update to the latest release tag
git_tag: v0.3.6 # Update to the latest release tag

requirements:
build:
Expand All @@ -20,7 +20,7 @@ requirements:
- scikit-learn>=0.19.0
- scipy>=0.17.0
- pillow>=6.2.0
- pytorch>=1.0.0
- pytorch>=1.0.0,<=2.3.1
- torchvision
- tqdm>=4.65.0
- h5py>=3.7.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
torch>=1.0.0
torch>=1.0.0,<=2.3.1
torchvision
tqdm>=4.65.0
h5py>=3.7.0
Expand Down
2 changes: 1 addition & 1 deletion topaz/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.5"
__version__ = "0.3.6"

0 comments on commit 0aee22d

Please sign in to comment.