Skip to content

Commit

Permalink
Prepare release 24.9.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Sep 23, 2024
1 parent a159d22 commit fb5012c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ of your repository and add in:
```yaml
- repos:
- repo: https://github.com/JelleZijlstra/autotyping
rev: v24.4.0
rev: v24.9.0
hooks:
- id: autotyping
stages: [commit]
Expand Down Expand Up @@ -145,6 +145,11 @@ Known limitations:

# Changelog

## 24.9.0 (September 23, 2024)

- Add pre-commit support. (Thanks to Akshit Tyagi and Matthew Akram.)
- Add missing dependency. (Thanks to Stefane Fermigier.)

## 24.3.0 (March 25, 2024)

- Add simpler ways to invoke autotyping. Now, it is possible to simply use
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "autotyping"
version = "24.3.0"
version = "24.9.0"
description = "A tool for autoadding simple type annotations."
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
]
dependencies = [
Expand All @@ -42,7 +43,7 @@ requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
target_version = ['py38', 'py39', 'py310', 'py311', 'py312']
target_version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
include = '\.pyi?$'

exclude = '''
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ commands =

[testenv:black]
deps =
black == 24.2.0
black == 24.8.0
commands =
black --check .

Expand Down

0 comments on commit fb5012c

Please sign in to comment.