Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/conda_install_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.12", "3.13", "3.14"]

defaults:
run:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
strategy:
matrix:
# Run all supported Python versions on linux
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.12", "3.13", "3.14"]
os: [ubuntu-latest]
# Include 1 MacOS Silicon (latest) and 1 Windows run
include:
- os: macos-latest
python-version: "3.13"
python-version: "3.14"
- os: windows-latest
python-version: "3.13"
python-version: "3.14"

steps:
# these libraries enable testing on Qt on linux
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you are not familiar with `git`, we recommend reading up on [this guide](http
First, create and activate a `conda` environment:

```sh
conda create -n movement-dev -c conda-forge python=3.13
conda create -n movement-dev -c conda-forge python=3.14
conda activate movement-dev
```

Expand All @@ -67,7 +67,7 @@ If you are not familiar with `git`, we recommend reading up on [this guide](http
First, create and activate a [virtual environment](uv:pip/environments/):

```sh
uv venv --python=3.13
uv venv --python=3.14
source .venv/bin/activate # On macOS and Linux
.venv\Scripts\activate # On Windows PowerShell
```
Expand Down
4 changes: 2 additions & 2 deletions docs/source/user_guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ clean virtual environment, using tools such as
:::{tab-item} conda
Create and activate a new [conda environment](conda:user-guide/tasks/manage-environments.html):
```sh
conda create -y -n movement-env -c conda-forge python=3.13
conda create -y -n movement-env -c conda-forge python=3.14
conda activate movement-env
```

Expand All @@ -22,7 +22,7 @@ We used `movement-env` as the environment name, but you can choose any name you
Create and activate a new [virtual environment](uv:pip/environments/) inside your project directory:

```sh
uv venv --python=3.13
uv venv --python=3.14

source .venv/bin/activate # On macOS and Linux
.venv\Scripts\activate # On Windows PowerShell
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Framework :: napari",
Expand Down Expand Up @@ -159,14 +159,14 @@ legacy_tox_ini = """
requires =
tox>=4
tox-gh-actions
envlist = py{311,312,313}
envlist = py{312,313,314}
isolated_build = True

[gh-actions]
python =
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[testenv]
passenv =
Expand Down
Loading