Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cryptol-remote-api to 3.1.1 #1662

Merged
merged 3 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ jobs:

- uses: actions/setup-python@v2
with:
# Ensure pyproject.toml and python/mypy.ini are kept in sync with the Python version here.
python-version: '3.12'

- uses: abatilo/[email protected]
Expand Down Expand Up @@ -322,6 +323,7 @@ jobs:
- if: matrix.suite == 'rpc'
uses: actions/setup-python@v2
with:
# Ensure cryptol-remote-api/python/{pyproject.toml,mypy.ini} are kept in sync with the Python version here.
python-version: '3.12'

- if: matrix.suite == 'rpc'
Expand Down Expand Up @@ -464,6 +466,7 @@ jobs:
- if: matrix.image == 'ghcr.io/galoisinc/cryptol-remote-api'
uses: actions/setup-python@v2
with:
# Ensure cryptol-remote-api/python/{pyproject.toml,mypy.ini} are kept in sync with the Python version here.
python-version: '3.12'

- if: matrix.image == 'ghcr.io/galoisinc/cryptol-remote-api'
Expand Down
4 changes: 4 additions & 0 deletions cryptol-remote-api/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for `cryptol` Python package

## 3.1.1 -- 2024-05-15

* Add support for Python 3.12.

## 3.1.0 -- 2024-02-05

* The v3.1.0 release is made in tandem with the Cryptol 3.1.0 release. See the
Expand Down
2 changes: 1 addition & 1 deletion cryptol-remote-api/python/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2021 Galois Inc.
Copyright (c) 2013-2024 Galois Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
1 change: 1 addition & 0 deletions cryptol-remote-api/python/mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[mypy]
no_implicit_optional = True
# Ensure .github/workflows/ci.yml and cryptol-remote-api/python/mypy.ini match the Python version used here.
python_version = 3.12
warn_return_any = True
warn_unused_configs = True
Expand Down
15 changes: 8 additions & 7 deletions cryptol-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 cryptol-remote-api/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cryptol"
version = "3.1.0.99"
version = "3.1.1.99"
readme = "README.md"
keywords = ["cryptography", "verification"]
description = "Cryptol client for the Cryptol RPC server"
Expand All @@ -15,7 +15,7 @@ include = [
[tool.poetry.dependencies]
python = ">=3.8.0,<4"
BitVector = "^3.4.9"
argo-client = "0.0.11"
argo-client = "0.0.12"
typing-extensions = "^4.1.1"

requests = ">=2.31.0"
Expand Down
Loading