Skip to content

Commit

Permalink
chore: bump ruff to v3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mak626 committed Mar 12, 2024
1 parent dc9ed6f commit 6d544f6
Show file tree
Hide file tree
Showing 5 changed files with 200 additions and 198 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,13 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Lint with ruff
run: |
python -m pip install ruff
make lint
- name: Install dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --with dev
- name: Lint with ruff
run: make lint
- name: Run Tests
run: make test
- name: Build Package
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Lint with ruff
- name: Install dependencies
run: |
python -m pip install ruff
make lint
python -m pip install poetry
poetry config virtualenvs.create false
poetry install --with dev
- name: Lint with ruff
run: make lint
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
# html_theme = 'alabaster'
# if on_rtd:
# html_theme = 'sphinx_rtd_theme'
import sphinx_graphene_theme #noqa
import sphinx_graphene_theme # noqa

html_theme = "sphinx_graphene_theme"

Expand Down
Loading

0 comments on commit 6d544f6

Please sign in to comment.