Skip to content

Commit

Permalink
Test auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Aug 31, 2023
1 parent 22f33bb commit 5295fd6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
Python3.11:
python.version: "3.11"
RUN_COVERAGE: yes
Python3.8:
python.version: "3.8"
Python3.9:
python.version: "3.9"
PreRelease:
python.version: "3.11"
PRERELEASE_DEPENDENCIES: yes
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes/0.10.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
```{rubric} Other updates
```

- Bump minimum python version to 3.8 {pr}`820` {user}`flying-sheep`

```{rubric} Deprecations
```

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = ["hatchling", "hatch-vcs"]
[project]
name = "anndata"
description = "Annotated data."
requires-python = ">=3.8"
requires-python = ">=3.9"
license = "BSD-3-Clause"
authors = [
{name = "Philipp Angerer"},
Expand All @@ -29,7 +29,6 @@ classifiers = [
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -139,10 +138,15 @@ select = [
"E",
"F",
"W",
"UP",
"I",
]
[tool.ruff.per-file-ignores]
# E721 comparing types, but we specifically are checking that we aren't getting subtypes (views)
"anndata/tests/test_readwrite.py" = ["E721"]
[tool.ruff.isort]
known-first-party = ["anndata"]
required-imports = ["from __future__ import annotations"]

[tool.codespell]
skip = ".git,*.pdf,*.svg"
Expand Down

0 comments on commit 5295fd6

Please sign in to comment.