Skip to content
Merged
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
1 change: 1 addition & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ API Documentation
apis/optim.rst
apis/running.rst
apis/mixin.rst
``brainpy.state`` module <https://brainpy-state.readthedocs.io/api/index.html>

The following APIs will no longer be maintained in the future, but you can still use them normally.

Expand Down
2 changes: 0 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,3 @@ See also the ecosystem
FAQ.rst
api.rst
changelog.md
brainpy-changelog.md
brainpylib-changelog.md
210 changes: 105 additions & 105 deletions docs/quickstart/simulation.ipynb

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ dynamic = ['version']
"Source Code" = "https://github.com/brainpy/BrainPy"

[project.optional-dependencies]
cpu = ["jax[cpu]"]
cuda12 = ["jax[cuda12]"]
cuda13 = ["jax[cuda13]"]
tpu = ["jax[tpu]"]
cpu = ["jax[cpu]", 'brainevent[cpu]']
cuda12 = ["jax[cuda12]", 'brainevent[cuda12]']
cuda13 = ["jax[cuda13]", 'brainevent[cuda13]']
tpu = ["jax[tpu]", 'brainevent[tpu]']

[tool.setuptools]
package-dir = { "" = "." }
Expand Down
Loading