Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Mar 26, 2024
1 parent 875bcd7 commit db3c6de
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install black blackdoc flake8 isort
python -m pip install -r requirements.txt
python -m pip install black blackdoc flake8 isort
- name: Check code style
run: make check
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install sphinx sphinx-intl sphinx_rtd_theme
python -m pip install -r requirements.txt
python -m pip install build sphinx sphinx-intl sphinx_rtd_theme
python -m build --sdist
python -m install dist/*
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,9 @@ jobs:
with:
python-version: '3.x'

- name: Install dependencies
run: |
pip install setuptools wheel
- name: Build and publish
- name: Build
run: |
python -m install build
python -m build
ls -lh dist/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest>=6.0 pytest-cov coverage[toml] codecov setuptools
python -m pip install -r requirements.txt
python -m pip install build pytest>=6.0 pytest-cov coverage[toml] codecov
python -m build --sdist
python -m pip install dist/*
Expand Down

0 comments on commit db3c6de

Please sign in to comment.