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 supported python version range #200

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
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/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ for representation learning on [arXiv](https://arxiv.org/abs/2410.11281).
1. We recommend using a new Conda/virtual environment.

```sh
conda create --name viscy python=3.10
conda create --name viscy python=3.11
# OR specify a custom path since the dependencies are large:
# conda create --prefix /path/to/conda/envs/viscy python=3.10
# conda create --prefix /path/to/conda/envs/viscy python=3.11
```

2. Install a released version of VisCy from PyPI:
Expand Down
2 changes: 1 addition & 1 deletion examples/virtual_staining/dlmbl_exercise/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ START_DIR=$(pwd)

conda deactivate
# Create conda environment
conda create -y --name 06_image_translation python=3.10
conda create -y --name 06_image_translation python=3.11

# Install ipykernel in the environment.
conda install -y ipykernel nbformat nbconvert black jupytext ipywidgets --name 06_image_translation
Expand Down
2 changes: 1 addition & 1 deletion examples/virtual_staining/img2img_translation/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ START_DIR=$(pwd)

conda deactivate
# Create conda environment
conda create -y --name image2image python=3.10
conda create -y --name image2image python=3.11

# Install ipykernel in the environment.
conda install -y ipykernel nbformat nbconvert black jupytext ipywidgets --name img2img
Expand Down
2 changes: 1 addition & 1 deletion examples/virtual_staining/phase_contrast/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ START_DIR=$(pwd)

conda deactivate
# Create conda environment
conda create -y --name vs_Phc python=3.10
conda create -y --name vs_Phc python=3.11

# Install ipykernel in the environment.
conda install -y ipykernel nbformat nbconvert black jupytext ipywidgets --name vs_Phc
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ build-backend = "setuptools.build_meta"
name = "viscy"
description = "computer vision for image-based phenotyping of single cells"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "CZ Biohub SF", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
]
dependencies = [
Expand Down
Loading