Skip to content

Commit 006c8c4

Browse files
Add Python 3.14 and mark CVC5 1.3.1 as a dep
1 parent 668ad0d commit 006c8c4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v5
19-
- name: Set up Python 3.13
20-
uses: actions/setup-python@v3
19+
- name: Set up Python 3.14
20+
uses: actions/setup-python@v6
2121
with:
22-
python-version: "3.13"
22+
python-version: "3.14"
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
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", "3.12", "3.13"]
16+
py-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v5
@@ -23,7 +23,7 @@ jobs:
2323
unzip cvc5-Linux-x86_64-static.zip
2424
sudo cp cvc5-Linux-x86_64-static/bin/cvc5 /usr/local/bin
2525
- name: Set up Python ${{ matrix.py-version }}
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.py-version }}
2929
- name: Install dependencies

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.3.0"],
50+
"api": ["cvc5==1.3.1"],
5151
},
5252
python_requires=">=3.8",
5353
classifiers=[

0 commit comments

Comments
 (0)