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
6 changes: 3 additions & 3 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11

- name: Install dependencies and build
run: |
Expand All @@ -80,5 +80,5 @@ jobs:

- name: Check Build
run: |
cd ./dist
pytest ../
pip install tox tox-gh-actions coverage
tox
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
python -m build
- name: Test with pytest
run: |
cd ./dist
pytest ../
pip install tox tox-gh-actions coverage
tox
- uses: actions/upload-artifact@v4
with:
name: EasyScience - Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions Examples/base/plot_baseclass1.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

import matplotlib.pyplot as plt
import numpy as np

from easyscience.Objects.ObjectClasses import BaseObj
from easyscience.Objects.ObjectClasses import Parameter

Expand Down