Skip to content

Commit d640d51

Browse files
Upgrade CVC5 and support Python 3.12
1 parent 96af466 commit d640d51

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
uri: 'https://github.com/cvc5/cvc5/releases/download/cvc5-1.0.8/cvc5-Linux'
2222
name: 'cvc5'
2323
version: '1.0.8'
24-
- name: Set up Python 3.9
24+
- name: Set up Python 3.12
2525
uses: actions/setup-python@v3
2626
with:
27-
python-version: "3.9"
27+
python-version: "3.12"
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
py-version: ["3.8", "3.9", "3.10", "3.11"]
16+
py-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cvc5==1.2.0
1+
cvc5==1.3.0
22
coverage
33
pylint
44
pycodestyle

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
license="GNU General Public License v3",
4848
packages=["pyvcg", "pyvcg.driver"],
4949
extras_require={
50-
"api": ["cvc5==1.2.0"],
50+
"api": ["cvc5==1.3.0"],
5151
},
5252
python_requires=">=3.8",
5353
classifiers=[

0 commit comments

Comments
 (0)