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

Re-enable tox-uv #150

Merged
merged 2 commits into from
Mar 1, 2024
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
[[ "${{ matrix.os }}" = "ubuntu-latest" ]] && sudo apt-get install -y libcap-dev || true
shell: bash
- name: install tox
run: python3 -m pip install tox
run: python3 -m pip install tox tox-uv
- name: run tox
run: tox -e 'py${{ matrix.python_version }}'
- name: submit code coverage
Expand All @@ -56,7 +56,7 @@ jobs:
cache: 'pip'
- run: sudo apt-get install -y pandoc libcap-dev
- name: install tox
run: python3 -m pip install tox
run: python3 -m pip install tox tox-uv
- name: 'run tox for environment ${{ matrix.envs }}'
run: tox -e '${{ matrix.envs }}'
- name: submit code coverage
Expand All @@ -75,7 +75,7 @@ jobs:
cache: 'pip'
- run: sudo apt-get install -y pandoc
- name: install tox
run: python3 -m pip install tox
run: python3 -m pip install tox tox-uv
- name: 'run tox for docs-build-ci'
run: tox -e 'docs-build-ci'
- uses: actions/[email protected]
Expand Down
3 changes: 2 additions & 1 deletion docs_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
click
sphinx<7
sphinx
sphinx-autobuild
sphinxcontrib-bibtex>=2
sphinx-issues
Expand All @@ -9,3 +9,4 @@ nbsphinx_link
ipython
libertem[bqplot]
flask
setuptools
Loading