Skip to content

Commit

Permalink
Use groups instead of extras for dev dependencies; relax sphinx versi…
Browse files Browse the repository at this point in the history
…on dependency
  • Loading branch information
pkalita-lbl committed Feb 8, 2024
1 parent 0bc0d5f commit 1a17e64
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 245 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.7" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
python-version: 3.11
- name: Install dependencies
run: |
pip install tox
Expand Down Expand Up @@ -78,7 +75,7 @@ jobs:
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction --extras refresh
run: poetry install --no-interaction

#----------------------------------------------
# coverage report
Expand Down
Loading

0 comments on commit 1a17e64

Please sign in to comment.