diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index cdb578e..54a1614 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -38,3 +38,6 @@ jobs: - name: Check Types run: | make test-pyre + - name: Test Build + run: | + poetry build diff --git a/Makefile b/Makefile index e2700ad..df2062e 100644 --- a/Makefile +++ b/Makefile @@ -39,3 +39,6 @@ test-pyre: test: test-format test-python test-pyre $(HIDE)echo "All tests passed" + +build: + $(HIDE)$(POETRY) build diff --git a/poetry.lock b/poetry.lock index 74a3b46..a75b4d8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -854,4 +854,4 @@ typing-extensions = ">=3.7.4" [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "64f3f2f9aa25f7db2bf74b07e8bfdc6ad7d1384b12fc9868a17b0920c914919c" +content-hash = "52f197f84aec6dfbc61fe31343643b007f1fa717ea4e395470266854b76ae612" diff --git a/pyproject.toml b/pyproject.toml index 7257cb7..981bfb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.11" msgpack = "^1.1.0" -cryptography = "^43.0.3" +cryptography = ">43" grpcio = "^1.67.1"