-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Python 3.8 and PyPy 3.9, add more CI tools, fix building docs (#94)
- Loading branch information
Showing
12 changed files
with
74 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
skips: | ||
- B101 | ||
exclude_dirs: ['tests'] |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
python-version: "3.13" | ||
- uses: pre-commit/[email protected] | ||
|
||
tests: | ||
|
@@ -21,18 +21,18 @@ jobs: | |
- python-version: '3.12' # Keep in sync with .readthedocs.yml | ||
env: | ||
TOXENV: docs | ||
- python-version: '3.12' | ||
- python-version: '3.13' | ||
env: | ||
TOXENV: pylint | ||
- python-version: '3.13' | ||
env: | ||
TOXENV: twinecheck | ||
- python-version: 3.8 | ||
- python-version: '3.13' | ||
env: | ||
TOXENV: py | ||
TOXENV: typing | ||
- python-version: 3.9 | ||
env: | ||
TOXENV: py | ||
- python-version: pypy-3.9 | ||
env: | ||
TOXENV: py | ||
- python-version: pypy-3.10 | ||
env: | ||
TOXENV: py | ||
|
@@ -48,13 +48,13 @@ jobs: | |
- python-version: '3.12' | ||
env: | ||
TOXENV: py | ||
- python-version: '3.13.0-rc.1' | ||
- python-version: '3.13' | ||
env: | ||
TOXENV: py | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install system libraries | ||
if: contains(matrix.python-version, 'pypy') || contains(matrix.python-version, 'beta') | ||
if: contains(matrix.python-version, 'pypy') | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libxml2-dev libxslt-dev | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[MASTER] | ||
ignore=typing | ||
persistent=no | ||
|
||
[MESSAGES CONTROL] | ||
disable=broad-exception-caught, | ||
c-extension-no-member, | ||
consider-using-f-string, | ||
disallowed-name, | ||
duplicate-code, | ||
fixme, | ||
import-error, | ||
import-outside-toplevel, | ||
invalid-name, | ||
line-too-long, | ||
missing-class-docstring, | ||
missing-function-docstring, | ||
missing-module-docstring, | ||
no-else-return, | ||
no-member, | ||
not-callable, | ||
parse-error, | ||
protected-access, | ||
raise-missing-from, | ||
redefined-builtin, | ||
redefined-outer-name, | ||
too-few-public-methods, | ||
too-many-arguments, | ||
too-many-lines, | ||
too-many-positional-arguments, | ||
too-many-public-methods, | ||
unidiomatic-typecheck, | ||
unused-argument, | ||
use-a-generator, | ||
wrong-import-order, | ||
wrong-import-position, |
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
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