Skip to content

Commit

Permalink
Python: Require argo-client >= 0.0.13 and cryptol 3.2.1
Browse files Browse the repository at this point in the history
This updates the `saw-client` Python bindings to require the use of
`argo-client-0.0.13` or later, bringing in the performance improvements from
GaloisInc/argo#216. It also brings in the use of `cryptol-3.2.1`, which is
compatible with `argo-client-0.0.13` or later.
  • Loading branch information
RyanGlScott committed Sep 18, 2024
1 parent 9251017 commit c32af16
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions saw-remote-api/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Revision history for saw-client

## next -- TBA

* Require building with `argo-client-0.0.13` or later. `argo-client-0.0.13` uses
blocking IO, which should reduce CPU load when receiving replies.

## 1.2.0 -- 2024-08-30

* Add `str_slice()` and `str_slice_range()` functions for constructing MIR `str`
Expand Down
18 changes: 9 additions & 9 deletions saw-remote-api/python/poetry.lock

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

4 changes: 2 additions & 2 deletions saw-remote-api/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ include = [
python = "^3.8"
requests = "^2.25.1"
BitVector = "^3.4.9"
cryptol = "3.2.0" # { path = "../../deps/cryptol/cryptol-remote-api/python/", develop = true }
argo-client = "0.0.12"
cryptol = "3.2.1" # { path = "../../deps/cryptol/cryptol-remote-api/python/", develop = true }
argo-client = ">=0.0.13"
lmdb = "^1.4.1"
cbor2 = "^5.4.6"
python-dateutil = "^2.8.2"
Expand Down

0 comments on commit c32af16

Please sign in to comment.