Skip to content

Commit 4a9bbcd

Browse files
Merge branch 'main' into feature/predict_batch
2 parents 855c5d9 + f6cdf17 commit 4a9bbcd

File tree

14 files changed

+2285
-88
lines changed

14 files changed

+2285
-88
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v3
18-
- name: Set up Python 3.10
18+
- name: Set up Python 3.11
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.11"
2222
cache: "pip"
2323
cache-dependency-path: "**/pyproject.toml"
2424
- name: Install build dependencies

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- uses: actions/checkout@v3
2626
with:
2727
submodules: true
28-
- name: Set up Python 3.10
28+
- name: Set up Python 3.11
2929
uses: actions/setup-python@v4
3030
with:
31-
python-version: "3.10"
31+
python-version: "3.11"
3232

3333
- name: Cache pre-commit
3434
uses: actions/cache@v3

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
include:
26-
- os: ubuntu-latest
27-
python: "3.10"
2826
- os: ubuntu-latest
2927
python: "3.11"
3028
- os: ubuntu-latest
3129
python: "3.12"
30+
- os: ubuntu-latest
31+
python: "3.13"
3232
- os: macos-latest
3333
python: "3.12"
3434

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
repos:
22
# Hooks that are run everywhere
33
- repo: https://github.com/biomejs/pre-commit
4-
rev: v2.0.0-beta.3
4+
rev: v2.0.0-beta.5
55
hooks:
66
- id: biome-format
77
# Hooks that are run for scripts
88
- repo: https://github.com/tox-dev/pyproject-fmt
9-
rev: v2.5.1
9+
rev: v2.6.0
1010
hooks:
1111
- id: pyproject-fmt
1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.11.9
13+
rev: v0.11.11
1414
hooks:
1515
- id: ruff
1616
args: [--fix, --exit-non-zero-on-fix]

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.10"
6+
python: "3.11"
77
sphinx:
88
configuration: docs/conf.py
99
# disable this for more lenient docs builds

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Installation
22
============
3-
:mod:`cellflow` requires Python version >= 3.10 to run.
3+
:mod:`cellflow` requires Python version >= 3.11 to run.
44

55
PyPI
66
----

0 commit comments

Comments
 (0)