Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb5012c

Browse files
Prepare release 24.9.0 (#80)
1 parent a159d22 commit fb5012c

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
1313

1414
steps:
1515
- uses: actions/checkout@v4

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ of your repository and add in:
112112
```yaml
113113
- repos:
114114
- repo: https://github.com/JelleZijlstra/autotyping
115-
rev: v24.4.0
115+
rev: v24.9.0
116116
hooks:
117117
- id: autotyping
118118
stages: [commit]
@@ -145,6 +145,11 @@ Known limitations:
145145

146146
# Changelog
147147

148+
## 24.9.0 (September 23, 2024)
149+
150+
- Add pre-commit support. (Thanks to Akshit Tyagi and Matthew Akram.)
151+
- Add missing dependency. (Thanks to Stefane Fermigier.)
152+
148153
## 24.3.0 (March 25, 2024)
149154

150155
- Add simpler ways to invoke autotyping. Now, it is possible to simply use

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "autotyping"
3-
version = "24.3.0"
3+
version = "24.9.0"
44
description = "A tool for autoadding simple type annotations."
55
readme = "README.md"
66
requires-python = ">=3.8"
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Topic :: Software Development",
2728
]
2829
dependencies = [
@@ -42,7 +43,7 @@ requires = ["setuptools>=69", "wheel"]
4243
build-backend = "setuptools.build_meta"
4344

4445
[tool.black]
45-
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
46+
target_version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
4647
include = '\.pyi?$'
4748

4849
exclude = '''

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ commands =
1111

1212
[testenv:black]
1313
deps =
14-
black == 24.2.0
14+
black == 24.8.0
1515
commands =
1616
black --check .
1717

0 commit comments

Comments
 (0)