Skip to content

Commit

Permalink
Merge pull request #40 from kurtmckee/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
kurtmckee authored Dec 3, 2024
2 parents 86d4e4a + 46bacd9 commit 4208f2c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
cpython-beta: "3.13"
- "3.13"
cpython-beta: "3.14"
cache-key-hash-files:
- "pyproject.toml"

Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repos:
- id: "check-useless-excludes"

- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v4.6.0"
rev: "v5.0.0"
hooks:
- id: "check-added-large-files"
- id: "check-merge-conflict"
Expand All @@ -24,15 +24,15 @@ repos:
- id: "trailing-whitespace"

- repo: "https://github.com/asottile/pyupgrade"
rev: "v3.17.0"
rev: "v3.19.0"
hooks:
- id: "pyupgrade"
name: "Enforce Python 3.9+ idioms"
args:
- "--py39-plus"

- repo: "https://github.com/psf/black-pre-commit-mirror"
rev: "24.8.0"
rev: "24.10.0"
hooks:
- id: "black"

Expand All @@ -46,7 +46,7 @@ repos:
hooks:
- id: "flake8"
additional_dependencies:
- "flake8-bugbear==24.8.19"
- "flake8-bugbear==24.10.31"

- repo: "https://github.com/editorconfig-checker/editorconfig-checker.python"
rev: "3.0.3"
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ profile = "black"
addopts = "--color=yes"
filterwarnings = [
"error",
# pyfakefs 5.6.0 on Python 3.13 throws ResourceWarnings.
"ignore:unclosed file.+pyfakefs:ResourceWarning",
]


Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
coverage_erase
py{3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }
coverage_report
labels =
update=update
Expand All @@ -19,7 +19,7 @@ deps =
package = wheel
wheel_build_env = build_wheel
depends =
py{3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }: coverage_erase
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }: coverage_erase
commands = coverage run -m pytest


Expand All @@ -38,7 +38,7 @@ skip_install = True
deps =
coverage[toml]
depends =
py{3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9}{-brotli, }{-zopfli, }
commands_pre =
coverage combine
coverage html --fail-under=0
Expand Down

0 comments on commit 4208f2c

Please sign in to comment.