-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Bump Python dev version to 3.12.2 (and drop Python 3.7) (#195)
As well as bump project deps to their latest versions, as well as sync common project files and fix some new flake8 warnings. And yeah, drop support for Python 3.7, bye bye, old buddy!
- Loading branch information
1 parent
1701fae
commit 7afb207
Showing
15 changed files
with
594 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
[flake8] | ||
ban-relative-imports = true | ||
classmethod-decorators = | ||
classmethod | ||
validator | ||
extend-ignore = E501, PIE786 | ||
extend-select = TC, TC1 | ||
inline-quotes = double | ||
max-complexity = 15 | ||
multiline-quotes = double | ||
per-file-ignores = | ||
*/models.py: TC | ||
*/models/*.py: TC | ||
type-checking-strict = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ runs: | |
shell: "bash" | ||
|
||
- name: "Cache mypy" | ||
uses: "actions/cache@v3.3.2" | ||
uses: "actions/cache@v4.0.0" | ||
with: | ||
path: "./.mypy_cache/" | ||
key: "mypy-${{ runner.os }}-${{ inputs.python-version }}" | ||
|
||
- name: "Run pre-commit" | ||
uses: "pre-commit/[email protected].0" | ||
uses: "pre-commit/[email protected].1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
|
||
- name: "Publish package" | ||
if: "${{ startsWith(github.ref, 'refs/tags/') }}" | ||
uses: "pypa/[email protected].10" | ||
uses: "pypa/[email protected].11" | ||
with: | ||
user: "${{ secrets.pypi-user }}" | ||
password: "${{ secrets.pypi-password }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.11.6 | ||
3.12.2 |
Oops, something went wrong.