-
Notifications
You must be signed in to change notification settings - Fork 524
fix setup mamba #1526
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
fix setup mamba #1526
Conversation
.github/workflows/main.yml
Outdated
- name: Create the conda environment | ||
shell: bash -l {0} | ||
run: mamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=3 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel | ||
micromamba-version: '1.5.5-0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use latest micromamba ;)
.github/workflows/main.yml
Outdated
shell: bash -l {0} | ||
# TODO unpin pyzmq | ||
run: mamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=3 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel pyzmq==25.1.0 | ||
micromamba-version: '1.5.5-0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed by f35792b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
matrix: | ||
os: [ubuntu-latest] | ||
python_version: ['3.8', '3.9', '3.10', '3.11'] | ||
python_version: ['3.9', '3.10', '3.11'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can probably take the opportunity to test on newer Python versions like 3.13 (but can be done in a separate PR).
Closes #1525