Skip to content

Commit

Permalink
Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamltyson committed Jul 11, 2024
1 parent e8e5ec4 commit 5bf8ff9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/community/developers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ will create and activate a `conda` environment with the requirements needed
for a development environment:

```sh
conda create -n brainglobe-dev -c conda-forge python=3.11 napari
conda create -n brainglobe-dev -c conda-forge python=3.12 napari
conda activate brainglobe-dev
```

Expand Down
2 changes: 1 addition & 1 deletion docs/source/documentation/brainglobe-atlasapi/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ A number of atlases are in development, but those available currently are:

## Installation

BrainGlobe AtlasAPI works with Python >=3.9, and can be installed from PyPI with:
BrainGlobe AtlasAPI works with Python >=3.10, and can be installed from PyPI with:

```bash
pip install brainglobe-atlasapi
Expand Down
2 changes: 1 addition & 1 deletion docs/source/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We always recommend that you install BrainGlobe tools into a virtual environment
Your environment should run Python 3.10, 3.11 or 3.12. To specify the Python version for new conda environment, add it as a parameter on creation:

```bash
conda create -n brainglobe-env python=3.11
conda create -n brainglobe-env python=3.12
```

Once you have created and activated your desired environment, you can install all BrainGlobe tools using `pip`:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/documentation/setting-up/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ The `(base)` is the bit that tells you that conda is set up
Open a terminal (or Anaconda Prompt) and type:

```bash
conda create --name ENV_NAME python=3.11
conda create --name ENV_NAME python=3.12
```

This will:

* Create a new conda environment (a kind of walled-off area on your computer that shouldn't affect other parts)
* Call it something, so you can reference it later (replace `ENV_NAME` with something useful)
* Install python version 3.11 into it
* Install python version 3.12 into it



Expand Down

0 comments on commit 5bf8ff9

Please sign in to comment.