Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
homerjed committed Jan 10, 2025
1 parent a2705af commit 311541a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ on:
- pyproject.toml # Only if version changes!

jobs:
# lint:
# name: Check 🧐 Python 🐍 package 🗂️
# runs-on: ubuntu-latest

test:
name: Test 🔍 package 🗂️
runs-on: ubuntu-latest
Expand Down Expand Up @@ -48,7 +44,7 @@ jobs:
- name: Setup 🛠️ Python 🐍
uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.12"

- name: Build 🏗️ a source distribution 🗃️ and a binary wheel 🛞
run: pipx run build --outdir=distributions
Expand All @@ -61,6 +57,7 @@ jobs:

publish-to-pypi:
name: Publish 📡 Python 🐍 distributions 📦 to PyPI 🌐
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs: [build]
runs-on: ubuntu-latest
environment:
Expand Down Expand Up @@ -147,7 +144,7 @@ jobs:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
pattern: python-package-distributions-*
pattern: distributions-* #python-package-distributions-*
path: distributions/
merge-multiple: true
- name: Publish distribution 📦 to TestPyPI
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sbiax"
version = "0.0.32"
version = "0.0.33"
description = "Fast, parallel and lightweight simulation-based inference in JAX."
readme = "README.md"
requires-python =">=3.10"
Expand Down

0 comments on commit 311541a

Please sign in to comment.