Skip to content

Commit

Permalink
ci: include python in bumpversion config (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Sep 6, 2024
1 parent 2d756c2 commit da75a03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ filename = "gen/node/package.json"
filename = "gen/haskell/utxorpc.cabal"

[[tool.bumpversion.files]]
filename = "gen/dotnet/Utxorpc.Spec.csproj"
filename = "gen/dotnet/Utxorpc.Spec.csproj"

[[tool.bumpversion.files]]
filename = "gen/python/pyproject.toml"
8 changes: 4 additions & 4 deletions gen/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system] # https://python-poetry.org/docs/pyproject/#poetry-and-pep-517
[build-system] # https://python-poetry.org/docs/pyproject/#poetry-and-pep-517
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry] # https://python-poetry.org/docs/pyproject/
[tool.poetry] # https://python-poetry.org/docs/pyproject/
name = "utxorpc-spec"
version = "0.5.1"
version = "0.10.0"
description = "Auto-generated structs for the UTxO RPC spec."
authors = ["Felipe Gonzalez <[email protected]>"]
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/utxorpc/spec"
# Needed because Poetry ignores whatever is on .gitignore
include = ["utxorpc_spec/**/*.py", "utxorpc_spec/**/*.pyi"]

[tool.poetry.dependencies] # https://python-poetry.org/docs/dependency-specification/
[tool.poetry.dependencies] # https://python-poetry.org/docs/dependency-specification/
python = ">=3.8,<4.0"
grpcio = "^1.64.1"
protobuf = "^5.27.1"
Expand Down

0 comments on commit da75a03

Please sign in to comment.