-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update `pre-commit.yml` * Remove `.prettierignore` * Move `.rstcheck.cfg`, remove old templates * Move `.mypy.ini` to `pyproject.toml` * Remove `.bump2version.cfg` * Remove unused pre-commits * Update MANIFEST.in * Move `doc8` * Update `pytest` * Remove `tox.ini` * Add `lint-docs` command * Enable `ruff` * Fix `mypy` * Fix flake8 * More CI tests * Fix TODOs in test * Remove download tests, fix some warnings * Fix more warnings * Auto-close figures in tests * Don't pass views in tests * Remove flaky saving in tests * Update `tests.yml` * Test on 3.11 as well, fix parallel coverage * Fix typo in `test.yml` * Don't test on 3.11 yet because of `matplotlib` * Don't test on 3.11 yet because of `numba` * Update `pyproject.toml` * Fix coverage path, update `codecov.yml` * Don't use `develop` in `testenv`
- Loading branch information
Showing
55 changed files
with
486 additions
and
667 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
codecov: | ||
require_ci_to_pass: false | ||
require_ci_to_pass: true | ||
strict_yaml_branch: main | ||
|
||
coverage: | ||
range: 90..100 | ||
range: "80...100" | ||
status: | ||
project: | ||
default: | ||
target: 1 | ||
target: 75% | ||
threshold: 1% | ||
patch: off | ||
|
||
comment: | ||
layout: reach, diff, files | ||
layout: "reach, diff, files" | ||
behavior: default | ||
require_changes: true | ||
branches: | ||
- main | ||
branches: [main] |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,33 +1,29 @@ | ||
:github_url: {{ fullname }} | ||
|
||
{{ fullname | escape | underline}} | ||
{{ fullname | escape | underline }} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autoclass:: {{ objname }} | ||
{% block methods %} | ||
{%- if methods %} | ||
.. rubric:: {{ _('Methods') }} | ||
|
||
{% block attributes %} | ||
{% if attributes %} | ||
.. rubric:: Attributes | ||
|
||
.. autosummary:: | ||
:toctree: . | ||
{% for item in attributes %} | ||
~{{ fullname }}.{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block methods %} | ||
{% if methods %} | ||
.. rubric:: Methods | ||
.. autosummary:: | ||
:toctree: . | ||
{% for item in methods %} | ||
{%- if item not in ['__init__', 'tree_flatten', 'tree_unflatten', 'bind'] %} | ||
~{{ name }}.{{ item }} | ||
{%- endif %} | ||
{%- endfor %} | ||
{%- endif %} | ||
{%- endblock %} | ||
{% block attributes %} | ||
{%- if attributes %} | ||
.. rubric:: {{ _('Attributes') }} | ||
|
||
.. autosummary:: | ||
:toctree: . | ||
{% for item in methods %} | ||
{%- if item != '__init__' %} | ||
~{{ fullname }}.{{ item }} | ||
{%- endif -%} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
.. autosummary:: | ||
:toctree: . | ||
{% for item in attributes %} | ||
~{{ name }}.{{ item }} | ||
{%- endfor %} | ||
{%- endif %} | ||
{% endblock %} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
Datasets | ||
######## | ||
|
||
Datasets | ||
~~~~~~~~ | ||
|
||
.. currentmodule:: moscot.datasets | ||
|
||
.. autosummary:: | ||
|
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
Developer | ||
######### | ||
|
||
|
||
OTT Backend | ||
~~~~~~~~~~~~ | ||
~~~~~~~~~~~ | ||
|
||
.. autosummary:: | ||
:toctree: genapi | ||
|
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
Plotting | ||
######## | ||
|
||
Plotting | ||
~~~~~~~~ | ||
|
||
.. currentmodule:: moscot.plotting | ||
|
||
.. autosummary:: | ||
|
Oops, something went wrong.