Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to exclude Python 3.12 from supported versions. #8161

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@

![STScI Logo](docs/_static/stsci_logo.png)

**JWST requires Python 3.9 or above and a C compiler for dependencies.**
**JWST requires a C compiler for dependencies and is currently limited to Python 3.9, 3.10 or 3.11.**

**Until Python 3.12 is supported, fresh conda environments will require setting the
Python version to one of the three supported versions.**

**Linux and MacOS platforms are tested and supported. Windows is not currently supported.**

Expand Down Expand Up @@ -50,13 +53,13 @@ Remember that all conda operations must be done from within a bash/zsh shell.

You can install the latest released version via `pip`. From a bash/zsh shell:

conda create -n <env_name> python
conda create -n <env_name> python=3.11
conda activate <env_name>
pip install jwst

You can also install a specific version:

conda create -n <env_name> python
conda create -n <env_name> python=3.11
conda activate <env_name>
pip install jwst==1.9.4

Expand All @@ -65,7 +68,7 @@ You can also install a specific version:
You can install the latest development version (not as well tested) from the
Github master branch:

conda create -n <env_name> python
conda create -n <env_name> python=3.11
conda activate <env_name>
pip install git+https://github.com/spacetelescope/jwst

Expand Down Expand Up @@ -117,7 +120,7 @@ already installed with released versions of the `jwst` package.

As usual, the first two steps are to create and activate an environment:

conda create -n <env_name> python
conda create -n <env_name> python=3.11
conda activate <env_name>

To install your own copy of the code into that environment, you first need to
Expand Down