Skip to content

Commit

Permalink
resolving MRO
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed Jan 23, 2024
1 parent 09e6362 commit e8f5cad
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
branches: [master]

jobs:
build:
pytest:
name: Run pytest
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -71,7 +72,6 @@ jobs:
run: poetry run pytest tests

- name: Statistics
if: success()
run: |
pip install coverage
coverage report
Expand All @@ -89,7 +89,7 @@ jobs:
fail_ci_if_error: false

docs:
name: Test docs build
name: Docs build
runs-on: ubuntu-latest
defaults:
run:
Expand Down
20 changes: 10 additions & 10 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
sphinx>3.2
sphinx >3.2
nbsphinx
pandoc
docutils
pydata-sphinx-theme
lightning>=2.0.0
lightning >=2.0.0
cloudpickle
torch>=2.0,!=2.0.1
optuna>=3.1.0
torch >=2.0,!=2.0.1
optuna >=3.1.0
scipy
pandas>=1.3
scikit-learn>1.2
pandas >=1.3
scikit-learn >1.2
matplotlib
statsmodels
ipython
nbconvert>=6.3.0
recommonmark>=0.7.1
pytorch-optimizer>=2.5.1
fastapi>0.80
nbconvert >=6.3.0
recommonmark >=0.7.1
pytorch-optimizer >=2.5.1
fastapi >0.80
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


# need to inherit from callback for this to work
class PyTorchLightningPruningCallbackAdjusted(pl.Callback, PyTorchLightningPruningCallback):
class PyTorchLightningPruningCallbackAdjusted(PyTorchLightningPruningCallback, pl.Callback):
pass


Expand Down

0 comments on commit e8f5cad

Please sign in to comment.