Skip to content
Closed
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: 2 additions & 2 deletions .github/workflows/ci_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: [ubuntu-latest, macos-latest, ubuntu-24.04 ]
exclude:
- runs-on: macos-latest
python-version: "3.9"
python-version: ["3.9"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -50,4 +50,4 @@ jobs:
run: |
omv list -V # list installed engines
env
pip list
pip list
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,4 @@ Since you can run the validation with different [engines](https://github.com/Ope
### Running tests automatically on GitHub Actions

To use OMV with GHA, copy an existing configuration file, e.g. https://github.com/OpenSourceBrain/ACnet2/blob/master/.github/workflows/omv-ci.yml and place it in the required repository.

5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,17 @@ classifiers=
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering

[options]
install_requires =
PyYAML
numpy<2.0.0 # Due to other packages (e.g. tables) not working yet with numpy v2
numpy
pyrx
pathlib; python_version<'3.4'
docopt
Expand Down
Loading