Skip to content

Commit

Permalink
Update deps, require Python 3.8 (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-burst committed Apr 1, 2024
1 parent 8e50e9a commit b0dfda3
Show file tree
Hide file tree
Showing 6 changed files with 252 additions and 543 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Expand Up @@ -11,7 +11,6 @@ jobs:
strategy:
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- "3.10"
Expand All @@ -26,7 +25,7 @@ jobs:

- uses: snok/install-poetry@v1
with:
version: 1.3.1
version: 1.8.2

- name: Show environment info
run: |
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -18,12 +18,12 @@ lint:
poetry run flake8 --jobs 4 --statistics --show-source $(CODE) tests scripts
poetry run pylint --jobs 4 --rcfile=setup.cfg $(CODE)
poetry run mypy $(CODE) tests scripts
poetry run black --target-version py36 --skip-string-normalization --check $(CODE) tests scripts
poetry run black --target-version py38 --skip-string-normalization --check $(CODE) tests scripts
poetry run pytest --dead-fixtures --dup-fixtures

format:
poetry run isort $(CODE) tests scripts
poetry run black --target-version py36 --skip-string-normalization $(CODE) tests scripts
poetry run black --target-version py38 --skip-string-normalization $(CODE) tests scripts
poetry run unify --in-place --recursive $(CODE) tests scripts

bump_major:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -83,7 +83,7 @@ MIT

**Unreleased**

...
* require at least Python 3.8.0

**1.7.2 - 2023-02-15**

Expand Down

0 comments on commit b0dfda3

Please sign in to comment.