Skip to content

Commit

Permalink
python(chore): protobuf versioning (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
solidiquis authored Nov 1, 2024
1 parent b88474d commit c56a065
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ rust/protos/**/*

go/protos/**/*
python/protos/**/*
python/dependencies/**/*
python/dist/**/*
.DS_Store

python/build
Expand Down
8 changes: 4 additions & 4 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ keywords = [
"sift_py",
]
dependencies = [
"grpcio~=1.64",
"grpcio~=1.13",
"npTDMS~=1.9",
"PyYAML~=6.0",
"pandas~=2.0",
"protobuf~=5.26",
"protobuf>=4.0",
"pydantic~=2.0",
"pydantic_core~=2.3",
"requests~=2.25",
Expand All @@ -34,7 +34,7 @@ dependencies = [
# May move these to optional dependencies in the future.
"pandas-stubs~=2.0",
"types-PyYAML~=6.0",
"types-protobuf~=5.26",
"types-protobuf>=4.0",
"typing-extensions~=4.6",
"types-requests~=2.25",
]
Expand All @@ -47,7 +47,7 @@ Changelog = "https://github.com/sift-stack/sift/tree/main/python/CHANGELOG.md"

[project.optional-dependencies]
development = [
"grpcio-testing==1.64.1",
"grpcio-testing==1.13",
"mypy==1.10.0",
"pyright==1.1.386",
"pytest==8.2.2",
Expand Down

0 comments on commit c56a065

Please sign in to comment.