Skip to content

Commit

Permalink
Merge pull request #26 from mfschubert/project
Browse files Browse the repository at this point in the history
Project
  • Loading branch information
mfschubert authored May 7, 2024
2 parents 0fbee40 + 2fe0c13 commit 17c07b9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "v0.3.0"
current_version = "v0.3.1"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Agjax -- jax wrapper for autograd-differentiable functions.
`v0.3.0`
`v0.3.1`

Agjax allows existing code built with autograd to be used with the jax framework.

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]

name = "agjax"
version = "v0.3.0"
version = "v0.3.1"
description = "A jax wrapper for autograd-differentiable functions."
keywords = ["autograd", "jax", "python", "wrapper", "gradient"]
readme = "README.md"
Expand Down Expand Up @@ -37,7 +37,7 @@ docs = [
"ceviche_challenges",
]
dev = [
"agjax[tests, examples]",
"agjax[tests, docs]",
"bump-my-version",
"darglint",
"mypy",
Expand All @@ -49,7 +49,7 @@ requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.package-data]
"invrs_gym" = ["py.typed"]
"agjax" = ["py.typed"]

[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"] # Allow tests with same name in different dirs.
Expand Down
2 changes: 1 addition & 1 deletion src/agjax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""agjax - a jax wrapper for autograd-differentiable functions."""

__version__ = "v0.3.0"
__version__ = "v0.3.1"
__author__ = "Martin Schubert <[email protected]>"

__all__ = ["experimental", "wrap_for_jax"]
Expand Down

0 comments on commit 17c07b9

Please sign in to comment.