From c02c976d2096873a0e1d0fbfdb201563f956c589 Mon Sep 17 00:00:00 2001 From: Jon Besga Date: Tue, 19 Mar 2024 16:53:10 +0000 Subject: [PATCH] Update GH Actions and patch version bump --- .github/workflows/pr.yaml | 2 +- .github/workflows/publish.yaml | 6 +++--- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 16625cf3..eb160686 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -31,4 +31,4 @@ jobs: - name: Run tests and check coverage run: | poetry run coverage run -m pytest - poetry run coverage report --fail-under=85 + poetry run coverage report --fail-under=90 diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 428b1916..46ca4acf 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -22,7 +22,7 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-package-distributions path: dist/ @@ -40,7 +40,7 @@ jobs: id-token: write steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ @@ -62,7 +62,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ diff --git a/pyproject.toml b/pyproject.toml index f09a8ed7..357bb014 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "neo4j-genai" -version = "0.1.1" +version = "0.1.2" description = "Python package to allow easy integration to Neo4j's GenAI features" authors = ["Neo4j, Inc "] license = "Apache License, Version 2.0"