-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ready saw-remote-api for v1.1.1 to handle python 3.12
- Loading branch information
1 parent
2ed03c8
commit 9371c75
Showing
7 changed files
with
237 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -405,7 +405,9 @@ jobs: | |
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.11' | ||
# Ensure that this matches saw-remote-api/python/mypy.ini file | ||
# and that saw-remote-api/python/pyproject.toml file is compatible with this version | ||
python-version: '3.12' | ||
|
||
- uses: abatilo/[email protected] | ||
with: | ||
|
@@ -701,7 +703,9 @@ jobs: | |
- if: matrix.image == 'ghcr.io/galoisinc/saw-remote-api' | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
# Ensure that this matches saw-remote-api/python/mypy.ini file | ||
# and that saw-remote-api/python/pyproject.toml file is compatible with this version | ||
python-version: '3.12' | ||
|
||
- if: matrix.image == 'ghcr.io/galoisinc/saw-remote-api' | ||
uses: abatilo/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "saw-client" | ||
version = "1.1.0.99" | ||
version = "1.1.1" | ||
readme = "README.md" | ||
description = "SAW client for the SAW RPC server" | ||
authors = ["Galois, Inc. <[email protected]>"] | ||
|
@@ -14,14 +14,14 @@ include = [ | |
python = "^3.8" | ||
requests = "^2.25.1" | ||
BitVector = "^3.4.9" | ||
cryptol = "3.1.0" # { path = "../../deps/cryptol/cryptol-remote-api/python/", develop = true } | ||
argo-client = "0.0.11" | ||
cryptol = "3.1.1" # { path = "../../deps/cryptol/cryptol-remote-api/python/", develop = true } | ||
argo-client = "0.0.12" | ||
lmdb = "^1.4.1" | ||
cbor2 = "^5.4.6" | ||
python-dateutil = "^2.8.2" | ||
|
||
[tool.poetry.dev-dependencies] | ||
mypy = "^0.991" | ||
mypy = "^1.10" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters