Skip to content

Commit

Permalink
Bump dev deps and add 3.13 support (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Nov 11, 2024
1 parent f60ad1d commit d257f02
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
python-arch:
- x86
- x64
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 24.4.2
rev: 24.8.0
hooks:
- id: black

Expand All @@ -10,7 +10,7 @@ repos:
- id: isort

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.0
rev: v1.13.0
hooks:
- id: mypy
exclude: ^setup.py|build/
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.11.2 - TBD

* Fix up CredSSP acceptor when running with a LibreSSL based Python install (OpenBSD)
* Added official support for Python 3.13

## 0.11.1 - 2024-07-24

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
"cryptography",
Expand Down
4 changes: 2 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
black == 24.4.2
black == 24.8.0
gssapi >= 1.5.0 ; sys_platform != 'win32'
k5test ; sys_platform != 'win32'
krb5 ; sys_platform != 'win32'
isort == 5.13.2
mypy == 1.10.0
mypy == 1.13.0
pre-commit
pytest
pytest-cov
Expand Down

0 comments on commit d257f02

Please # to comment.