Skip to content

Commit

Permalink
Better code architecture (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrslev committed Feb 19, 2022
1 parent bf00599 commit d89e95b
Show file tree
Hide file tree
Showing 85 changed files with 3,220 additions and 3,441 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
poetry config virtualenvs.create false
- name: Install package
run: poetry install --no-dev -E wrappers -E test
run: poetry install --extras all

- name: Install Pyright
run: npm install -g --no-package-lock --no-save pyright
Expand All @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -97,7 +97,7 @@ jobs:
poetry config virtualenvs.create false
- name: Install package
run: poetry install --no-dev -E wrappers -E test
run: poetry install --extras all

- name: Test
run: pytest --color=yes --cov --cov-report=xml
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
rev: v2.31.0
hooks:
- id: pyupgrade
args: [--py37-plus, --keep-runtime-typing]
args: [--py38-plus, --keep-runtime-typing]

- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
Expand All @@ -37,7 +37,7 @@ repos:
rev: v1.12.1
hooks:
- id: blacken-docs
args: [--target-version, py37]
args: [--target-version, py38]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
Expand Down
Loading

0 comments on commit d89e95b

Please sign in to comment.