Skip to content

Commit

Permalink
Merge pull request #11 from BastiTee/feature/update-boilerplate
Browse files Browse the repository at this point in the history
Update Python versions and all dependencies
  • Loading branch information
BastiTee authored Aug 19, 2023
2 parents 722a9d5 + 3370afc commit c013f89
Show file tree
Hide file tree
Showing 5 changed files with 256 additions and 396 deletions.
5 changes: 4 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ max-line-length = 88
# Q003 Change outer quotes to avoid escaping inner quotes
# W503 Line break before binary operator (preferred way)
# E203 See https://github.com/PyCQA/pycodestyle/issues/373
extend-ignore = "Q003,W503,E203"
extend-ignore =
Q003,
W503,
E203
# flake8-use-fstring
percent-greedy = 0
format-greedy = 2
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
matrix:
# https://www.python.org/downloads/
python-version: [
"3.7", # EOL: 2023-06-27
"3.8", # EOL: 2024-10
"3.9", # EOL: 2025-10
"3.10", # EOL: 2026-10
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ install-run:
@echo --- Note: The next command might fail before you reload your shell
my_module_cli

outdated:
@echo Show outdated dependencies
$(POETRY_CMD) show --outdated

publish:
@echo Release version $(VERSION)
git tag -a $(VERSION) -m "Version $(VERSION)"
Expand Down
Loading

0 comments on commit c013f89

Please sign in to comment.