Skip to content

Commit

Permalink
Trying out Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoeilers committed Feb 7, 2024
1 parent 41a51a9 commit 0f3dea8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
BOOGIE_EXE: "/home/runner/.dotnet/tools/boogie"
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- name: Install Boogie
run: |
dotnet tool install --global Boogie --version 2.15.9
Expand All @@ -27,4 +27,4 @@ jobs:
pip install .
- name: Test with pytest
run: |
pytest src/nagini_translation/tests.py --silicon --carbon
pytest -p no:faulthandler src/nagini_translation/tests.py --silicon --carbon
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For use with the PyCharm IDE, try the `Nagini PyCharm plugin <https://github.com
Dependencies (Ubuntu Linux)
===================================

Install Java 11 or newer (64 bit) and Python 3.9 (64 bit, other versions likely *will not work*) and the required libraries::
Install Java 11 or newer (64 bit) and Python 3.10 (64 bit, other versions likely *will not work*) and the required libraries::

sudo apt-get install python3-dev

Expand All @@ -19,7 +19,7 @@ For usage with Viper's verification condition generation backend Carbon, you wil
Dependencies (Windows)
==========================

1. Install Java 11 or newer (64 bit) and Python 3.9 (64 bit, other versions likely *will not work*).
1. Install Java 11 or newer (64 bit) and Python 3.10 (64 bit, other versions likely *will not work*).

2. Install the required version of either Visual C++ Build Tools or Visual Studio.

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@
install_requires=[
'mypy==0.782',
'toposort==1.5',
'jpype1==1.0.1',
'jpype1==1.4.0',
'astunparse==1.6.2',
'pytest==4.3.0',
'pytest-xdist==1.27.0',
'pytest==7.0.0',
'z3-solver==4.8.7.0'
],
entry_points={
Expand Down

0 comments on commit 0f3dea8

Please sign in to comment.