Skip to content

Commit 0803025

Browse files
committed
update metadata: Python 3.10-3.13, bump version to 0.7.0
- Update classifiers to Python 3.10-3.13 - Update requires-python to >=3.10 - Bump version to 0.7.0
1 parent 0d0158e commit 0803025

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# See https://pre-commit.com for more information
22
# See https://pre-commit.com/hooks.html for more hooks
33
default_language_version:
4-
python: python3.11
4+
python: python3.13
55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.4.0
7+
rev: v6.0.0
88
hooks:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
@@ -17,18 +17,18 @@ repos:
1717
args: ['--maxkb=1024']
1818

1919
- repo: https://github.com/PyCQA/flake8
20-
rev: 6.1.0
20+
rev: 7.2.0
2121
hooks:
2222
- id: flake8
2323
additional_dependencies: [flake8-django, flake8-builtins]
2424

2525
- repo: https://github.com/PyCQA/isort
26-
rev: 5.12.0
26+
rev: 7.0.0
2727
hooks:
2828
- id: isort
29-
additional_dependencies: [toml]
3029

3130
- repo: https://github.com/asottile/pyupgrade
32-
rev: v3.10.1
31+
rev: v3.21.2
3332
hooks:
3433
- id: pyupgrade
34+
args: [--py313-plus]

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ module = "structured_data"
88
description-file = "README.md"
99
classifiers = [
1010
"Programming Language :: Python :: 3",
11-
"Programming Language :: Python :: 3.8",
12-
"Programming Language :: Python :: 3.9",
1311
"Programming Language :: Python :: 3.10",
1412
"Programming Language :: Python :: 3.11",
13+
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.13",
1515
"Development Status :: 4 - Beta",
1616
"Framework :: Django",
1717
"Intended Audience :: Developers",
@@ -21,7 +21,7 @@ classifiers = [
2121
author = "Luke Rogers"
2222
author-email = "luke@dmptr.com"
2323
home-page = "https://github.com/dmptrluke/django-structured-data"
24-
requires-python=">=3.8"
24+
requires-python=">=3.10"
2525
requires = [
2626
'django>=3.2',
2727
]

structured_data/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Template tags to assist in adding structured metadata to views and models."""
2-
__version__ = '0.6.0'
2+
__version__ = '0.7.0'

0 commit comments

Comments
 (0)