Skip to content

Commit

Permalink
Updating the installation files.
Browse files Browse the repository at this point in the history
Update the documentation in the conda files and change the
requirements file so that if installed for Python 3.7 the last version
of SimpleITK that provided binaries for that Python version is
installed, otherwise the newest version is installed.

Co-authored-by: Bradley Lowekamp <[email protected]>
  • Loading branch information
zivy and blowekamp committed Nov 27, 2023
1 parent 52885ab commit f634bd7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- python=3.7.0 #Python version supported by imaris
- pip
- pip:
- SimpleITK == 2.2.1
- SimpleITK == 2.2.1 #last SimpleITK version providing Python 3.7 binaries
- numpy
- pandas
- h5py>=2.10.0
Expand Down
2 changes: 1 addition & 1 deletion environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:
- python=3.7.0 #Python version supported by imaris
- pip
- pip:
- SimpleITK == 2.2.1
- SimpleITK == 2.2.1 #last SimpleITK version providing Python 3.7 binaries
- numpy
- pandas
- h5py>=2.10.0
Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#
# Requirements file for SimpleITK Imaris Python 3.7 extensions.
# Requirements file for SimpleITK Imaris extensions.
# Python 3.7.0 is the Python version supported by imaris. SimpleITK version
# 2.2.1 is the last version providing binaries for 3.7.0.
#
SimpleITK == 2.2.1
SimpleITK == 2.2.1; python_version == '3.7'
numpy
pandas
h5py>=2.10.0
Expand Down

0 comments on commit f634bd7

Please sign in to comment.