Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bundle #123

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
21 changes: 11 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,14 @@ jobs:
if: always()
run: |
conda activate "${{ env.install_dir }}"
pytest --pyargs rsciio --reruns 3 -n 1 -k "not TestOperate"
pytest --pyargs rsciio --reruns 3 -n 1 -k "not TestOperate and not test_export_scalebar and not test_load_readonly and not test_lazy_loading_hyperspy_close"

- name: Test hyperspy
if: always()
run: |
conda activate "${{ env.install_dir }}"
pytest --pyargs hyperspy --reruns 3 -n 2
# test_rank_lstsq_residual fails on windows with MKL
pytest --pyargs hyperspy --reruns 3 -n 2 -k "not test_arpack"

- name: Test hyperspy_gui_ipywidgets
if: always()
Expand Down Expand Up @@ -432,7 +433,7 @@ jobs:
shell: cmd
run: |
call "${{ env.WP_DIR_NAME }}\scripts\env.bat"
pytest --pyargs rsciio --reruns 3 -n 2 -k "not test_mrcz.py and not test_usid.py and not TestOperate"
pytest --pyargs rsciio --reruns 3 -n 2 -k "not test_mrcz.py and not test_usid.py and not TestOperate and not test_lazy_loading_hyperspy_close"

- name: Run test hyperspy_gui_ipywidgets
if: always()
Expand Down Expand Up @@ -486,13 +487,13 @@ jobs:
# Skip interactive test
pytest --pyargs atomap -k "not TestSelectAtomsWithGui"

- name: Run test kikuchipy
if: always()
shell: cmd
run: |
call "${{ env.WP_DIR_NAME }}\scripts\env.bat"
# Skip these tests until there are fixed
pytest --pyargs kikuchipy -k "not test_spherical_pyvista and not test_not_allow_download_raises and not test_save_load_0d_nav"
# - name: Run test kikuchipy
# if: always()
# shell: cmd
# run: |
# call "${{ env.WP_DIR_NAME }}\scripts\env.bat"
# # Skip these tests until there are fixed
# pytest --pyargs kikuchipy -k "not test_spherical_pyvista and not test_not_allow_download_raises and not test_save_load_0d_nav"

- name: Upload Release Asset
if: startsWith(github.ref, 'refs/tags/')
Expand Down
9 changes: 4 additions & 5 deletions conda_distribution/construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ channels:
specs:
- abtem
- ase
- atomap >=0.4.1
- conda >=24.11.3
# use <2024.12.0 until https://github.com/hyperspy/hyperspy/pull/3476 is released
- dask-core >=2023.6.0,<2024.12.0
- atomap >=0.4.2
- conda >=25.1.1
- dask-core >=2023.6.0
- dask-labextension
- dask-image
# etspy has a tight pinning on numba (even if it doesn't use)
Expand All @@ -31,7 +30,7 @@ specs:
- exspy
- hdf5plugin
- holospy
- hyperspy >=2.2.0
- hyperspy >=2.3.0
- hyperspyui >=2.0.2
- ipympl
- jupyterlab
Expand Down
Loading