Skip to content
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
4 changes: 3 additions & 1 deletion .github/workflows/omv-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- "EDEN:0.2.2"
- "EDEN:0.2.3"

python-version: [ "3.10" ]
python-version: [ "3.12" ]

steps:
- uses: actions/checkout@v4
Expand All @@ -39,6 +39,8 @@ jobs:
- name: Install OMV
run: |
pip install git+https://github.com/OpenSourceBrain/osb-model-validation

pip install setuptools --upgrade # needed for eden on Python 3.12

- name: Run OMV tests on engine ${{ matrix.engine }}
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11"]
python-version: [ "3.9", "3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -25,6 +25,7 @@ jobs:

- name: Install EDEN using pip
run: |
pip install setuptools --upgrade # needed for Python 3.12
pip install eden-simulator

- name: Run EDEN example directly
Expand Down
Loading