Update get_available_gpus
and set_gpus
#66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test installation | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
# ----------------------------------------- | |
# Use a module from local source | |
# ----------------------------------------- | |
use_as_local_module: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9, '3.10', 3.11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements | |
run: | | |
pip install --user -U pip | |
pip install --user -r requirements.txt | |
- name: Run 'import nbtools' | |
run: python -c 'import nbtools' | |
# ----------------------------------------- | |
# Install with pip | |
# ----------------------------------------- | |
install_with_pip: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9, '3.10', 3.11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install with pip | |
run: | | |
pip install --user -U pip | |
pip install wheel | |
pip install --user git+https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git@${{ github.head_ref }}#egg=py-nbtools | |
- name: Run 'import nbtools' | |
run: python -c 'import nbtools' |