Skip to content

Commit

Permalink
Add type-requests to toml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mccleeary-galois committed Mar 19, 2024
1 parent 5bbc3dc commit 33212f4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
32 changes: 23 additions & 9 deletions cryptol-remote-api/python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion cryptol-remote-api/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@ include = [

[tool.poetry.dependencies]
python = ">=3.8.0,<4"
requests = "^2.31.0"
BitVector = "^3.4.9"
argo-client = "0.0.11"
typing-extensions = "^4.1.1"

# cryptol does not directly depend on these but mypy does depend on these.
# These not being locked caused CI to fail due to these updating automatically, see https://github.com/GaloisInc/cryptol/issues/1643.
# We will want to unlock these at some point, see https://github.com/GaloisInc/cryptol/issues/1645.
requests = "<2.31.0.20240310"
urllib3 = "<2.2.0"
types-requests = "<2.31.0.20240310"

[tool.poetry.dev-dependencies]
mypy = "^0.991"

Expand Down

0 comments on commit 33212f4

Please sign in to comment.