Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Sep 5, 2024
1 parent c7bb2b7 commit 1c79873
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Installing a Development Version

::

conda create -n scico python=3.11
conda create -n scico python=3.12

5. Activate the created conda virtual environment:

Expand Down
8 changes: 4 additions & 4 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
Installing SCICO
================

SCICO requires Python version 3.8 or later. (Version 3.10 is
recommended as it is the version under which SCICO has been most
thoroughly tested, and is the minimum supported Python version for
the most recent versions of JAX.) SCICO is supported on both Linux and
SCICO requires Python version 3.8 or later. (Version 3.12 is
recommended as it is the version under which SCICO is tested in GitHub
continuous integration, and since the most recent versions of JAX require
version 3.10 or later.) SCICO is supported on both Linux and
MacOS, but is not currently supported on Windows due to the limited
support for ``jaxlib`` on Windows. However, Windows users can use
SCICO via the `Windows Subsystem for Linux
Expand Down
4 changes: 2 additions & 2 deletions misc/conda/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ To install miniconda in ``/opt/conda`` do
./install_conda.sh -y /opt/conda


To create a conda environment called ``py310`` with default Python version (3.10) and without GPU support
To create a conda environment called ``scico`` with Python version 3.12 and without GPU support

::

./make_conda_env.sh -y -e py310
./make_conda_env.sh -y -p 3.12 -e scico


To include GPU support, follow the `jax installation instructions <https://github.com/google/jax#pip-installation-gpu-cuda>`__ after
Expand Down
4 changes: 2 additions & 2 deletions misc/conda/make_conda_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ Usage: $SCRIPT [-h] [-y] [-g] [-p python_version] [-e env_name]
[-v] Verbose operation
[-t] Display actions that would be taken but do nothing
[-y] Do not ask for confirmation
[-p python_version] Specify Python version (e.g. 3.10)
[-p python_version] Specify Python version (e.g. 3.12)
[-e env_name] Specify conda environment name
EOF
)

AGREE=no
VERBOSE=no
TEST=no
PYVER="3.10"
PYVER="3.12"
ENVNM=py$(echo $PYVER | sed -e 's/\.//g')

# Project requirements files
Expand Down

0 comments on commit 1c79873

Please sign in to comment.