-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
scverse-bot
authored and
scverse-bot
committed
May 21, 2024
1 parent
f867840
commit 1ac56db
Showing
9 changed files
with
75 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff a/.github/workflows/test.yaml b/.github/workflows/test.yaml (rejected hunks) | ||
@@ -24,11 +24,11 @@ jobs: | ||
matrix: | ||
include: | ||
- os: ubuntu-latest | ||
- python: "3.9" | ||
+ python: "3.10" | ||
- os: ubuntu-latest | ||
- python: "3.11" | ||
+ python: "3.12" | ||
- os: ubuntu-latest | ||
- python: "3.11" | ||
+ python: "3.12" | ||
pip-flags: "--pre" | ||
name: PRE-RELEASE DEPENDENCIES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
diff a/.gitignore b/.gitignore (rejected hunks) | ||
@@ -18,6 +18,7 @@ __pycache__/ | ||
/.pytest_cache/ | ||
/.cache/ | ||
/data/ | ||
+/node_modules/ | ||
|
||
# docs | ||
/docs/generated/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff a/docs/conf.py b/docs/conf.py (rejected hunks) | ||
@@ -36,10 +36,10 @@ needs_sphinx = "4.0" | ||
|
||
html_context = { | ||
"display_github": True, # Integrate GitHub | ||
- "github_user": "ivirshup", # Username | ||
- "github_repo": project_name, # Repo name | ||
- "github_version": "main", # Version | ||
- "conf_py_path": "/docs/", # Path in the checkout to the docs root | ||
+ "github_user": "ivirshup", | ||
+ "github_repo": "https://github.com/scverse/genomic-features", | ||
+ "github_version": "main", | ||
+ "conf_py_path": "/docs/", | ||
} | ||
|
||
# -- General configuration --------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
diff a/docs/contributing.md b/docs/contributing.md (rejected hunks) | ||
@@ -51,7 +51,7 @@ and [prettier][prettier-editors]. | ||
## Writing tests | ||
|
||
```{note} | ||
-Remember to first install the package with `pip install '-e[dev,test]'` | ||
+Remember to first install the package with `pip install -e '.[dev,test]'` | ||
``` | ||
|
||
This package uses the [pytest][] for automated testing. Please [write tests][scanpy-test-docs] for every function added |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
diff a/pyproject.toml b/pyproject.toml (rejected hunks) | ||
@@ -7,7 +7,7 @@ name = "genomic-features" | ||
version = "0.0.1" | ||
description = "Genomic annotations using BioConductor resources in Python." | ||
readme = "README.md" | ||
-requires-python = ">=3.9" | ||
+requires-python = ">=3.10" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Isaac Virshup"}, | ||
@@ -33,7 +33,7 @@ doc = [ | ||
"docutils>=0.8,!=0.18.*,!=0.19.*", | ||
"sphinx>=4", | ||
"sphinx-book-theme>=1.0.0", | ||
- "myst-nb", | ||
+ "myst-nb>=1.1.0", | ||
"sphinxcontrib-bibtex>=1.0.0", | ||
"sphinx-autodoc-typehints", | ||
"sphinxext-opengraph", |