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: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ repos:
- id: no-print-statements
files: ^src/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.4
rev: v0.11.8
hooks:
- id: ruff # lint
args: [ --fix]
- id: ruff-format # formatter
- repo: https://github.com/pycqa/bandit # basic security checks for python code
rev: 1.8.2
rev: 1.8.3
hooks:
- id: bandit
files: ^src/
Expand Down
159 changes: 82 additions & 77 deletions LICENSES_THIRD_PARTY.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dev: # create env for local dev
$(PYTHON_ENV) -m pip index versions oreum_core; \
$(PYTHON_ENV) -m pip install ".[dev,oreum_core_pypi]"; \
$(PYTHON_ENV) -c "import numpy as np; np.__config__.show()" > dev/install_log/blas_info.txt; \
$(PYTHON_ENV) -m playwright install chromium;\
pipdeptree -a > dev/install_log/pipdeptree.txt; \
pipdeptree -a -r > dev/install_log/pipdeptree_rev.txt; \
pip-licenses -saud -f markdown -i csv2md --output-file LICENSES_THIRD_PARTY.md; \
Expand Down
137 changes: 82 additions & 55 deletions notebooks/000_Intro.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion notebooks/renders/config_slides.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
c.SlidesExporter.reveal_width = "1600" #'1280' # 1920
c.SlidesExporter.reveal_height = "900" # '720' #'1080'
c.SlidesExporter.reveal_scroll = False
c.SlidesExporter.reveal_theme = "simple" #'serif'
c.SlidesExporter.reveal_theme = "simple" # "solarized" # "simple" # 'serif'
c.SlidesExporter.reveal_transition = "slide" # 'slide' # none fade convex concave zoom
c.SlidesExporter.skip_svg_encoding = True
# c.SlidesExporter.extra_template_basedirs = 'renders/templates/'
# c.SlidesExporter.template_name = 'slides-oemplus'
# --allow-chromium-download
Binary file modified plots/000_jointplot_corr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/000_jointplot_corr_vs_uncorr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/000_y_corr_vs_uncorr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified plots/000_y_delta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified publish/000_Intro.pdf
Binary file not shown.
190 changes: 55 additions & 135 deletions publish/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dev = [
]
# NOTE: separated out to allow Makefile dev to get from pypi (dev-js gets local)
oreum_core_pypi = [
"oreum_core[pymc]==0.10.1", # the latest package using osx-arm64 Accelerate
"oreum_core[pymc]>=0.10.7",
]

[project.urls]
Expand Down