From dfce880dcb3fe7582f1c95acd73b8fdc9c2a1dfc Mon Sep 17 00:00:00 2001 From: Colin Carroll Date: Wed, 20 Dec 2023 04:10:54 -0800 Subject: [PATCH] Activate gh-action to automatically push releases to pypi. PiperOrigin-RevId: 592516268 --- .github/workflows/pytest_and_autopublish.yml | 1 + README.md | 2 +- bayeux/__init__.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest_and_autopublish.yml b/.github/workflows/pytest_and_autopublish.yml index 0a44b93..bd77017 100644 --- a/.github/workflows/pytest_and_autopublish.yml +++ b/.github/workflows/pytest_and_autopublish.yml @@ -52,3 +52,4 @@ jobs: pypi-token: ${{ secrets.PYPI_API_TOKEN }} gh-token: ${{ secrets.GITHUB_TOKEN }} parse-changelog: true + pkg-name: bayeux_ml diff --git a/README.md b/README.md index 0bd544f..8245711 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ *Stitching together models and samplers* [![Unittests](https://github.com/jax-ml/bayeux/actions/workflows/pytest_and_autopublish.yml/badge.svg)](https://github.com/jax-ml/bayeux/actions/workflows/pytest_and_autopublish.yml) -[![PyPI version](https://badge.fury.io/py/bayeux.svg)](https://badge.fury.io/py/bayeux) +[![PyPI version](https://badge.fury.io/py/bayeux_ml.svg)](https://badge.fury.io/py/bayeux_ml) The goal of `bayeux` is to allow users to write a model in JAX and use best-in-class Bayesian inference methods on it. The API aims to be simple, self diff --git a/bayeux/__init__.py b/bayeux/__init__.py index 18b767c..d19b30a 100644 --- a/bayeux/__init__.py +++ b/bayeux/__init__.py @@ -16,7 +16,7 @@ # A new PyPI release will be pushed everytime `__version__` is increased # When changing this, also update the CHANGELOG.md -__version__ = '0.1.0' +__version__ = '0.1.1' # Note: import as is required for names to be exported. # See PEP 484 & https://github.com/google/jax/issues/7570