Skip to content

Commit d1bf3ea

Browse files
committed
Don't support Python 3.12 (not until OMPython does)
1 parent c286d4b commit d1bf3ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
include:
2626
- { name: '3.10', python: '3.10', tox: py310 }
27-
- { name: '3.12', python: '3.12', tox: py312 }
27+
- { name: '3.11', python: '3.11', tox: py311 }
2828
- { name: 'min', python: '3.10', tox: min }
2929
steps:
3030
- name: "Set up OpenModelica Compiler"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py310,py311,py312,min
2+
envlist = lint,py310,py311,min
33
skip_missing_interpreters = True
44

55
[testenv]
@@ -24,4 +24,4 @@ skip_install = true
2424
commands =
2525
pre-commit run pyupgrade --all-files --show-diff-on-failure
2626
pre-commit run black --all-files --show-diff-on-failure
27-
pre-commit run flake8 --all-files --show-diff-on-failure
27+
pre-commit run flake8 --all-files --show-diff-on-failure

0 commit comments

Comments
 (0)