Skip to content

Commit 9390787

Browse files
authored
Merge pull request #6 from OpenSourceBrain/development
Test on py 3.12
2 parents d7e92cb + 7b002a9 commit 9390787

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/omv-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- "EDEN:0.2.2"
2727
- "EDEN:0.2.3"
2828

29-
python-version: [ "3.10" ]
29+
python-version: [ "3.12" ]
3030

3131
steps:
3232
- uses: actions/checkout@v4
@@ -39,6 +39,8 @@ jobs:
3939
- name: Install OMV
4040
run: |
4141
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
42+
43+
pip install setuptools --upgrade # needed for eden on Python 3.12
4244
4345
- name: Run OMV tests on engine ${{ matrix.engine }}
4446
run: |

.github/workflows/pip-install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ "3.8", "3.9", "3.10", "3.11"]
16+
python-version: [ "3.9", "3.10", "3.11", "3.12"]
1717
runs-on: [ubuntu-latest, macos-latest, windows-latest]
1818

1919
steps:
@@ -25,6 +25,7 @@ jobs:
2525

2626
- name: Install EDEN using pip
2727
run: |
28+
pip install setuptools --upgrade # needed for Python 3.12
2829
pip install eden-simulator
2930
3031
- name: Run EDEN example directly

0 commit comments

Comments
 (0)