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
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ jobs:
permissions:
id-token: write
strategy:
# One package failing to upload must not cancel the uploads of the others.
fail-fast: false
matrix:
package:
- coordinode
Expand All @@ -180,7 +182,9 @@ jobs:
name: dist-${{ matrix.package }}
path: dist/

- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
# twine >= 6.1 is required to accept the Metadata-Version 2.5 that current
# hatchling writes; older pins of this action reject the wheel outright.
- uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/

Expand All @@ -198,7 +202,7 @@ jobs:
merge-multiple: true
path: dist/

- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
- uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
with:
packages-dir: dist/

Expand Down
1 change: 1 addition & 0 deletions coordinode-embedded/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name = "coordinode-embedded"
description = "CoordiNode embedded Python bindings — in-process graph database, no server required"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "Dmitry Prudnikov", email = "mail@polaz.com" }]
requires-python = ">=3.11"
keywords = ["graph", "database", "cypher", "embedded", "knowledge-graph"]
classifiers = [
Expand Down
Loading