Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "django-postcode-lookup"
version = "1.0.1"
version = "2.0.0.alpha.0"
description = "Pluggable postcode lookup endpoint"
readme = "README.md"
license = { file = "LICENSE" }
Expand All @@ -14,7 +14,7 @@ authors = [
]
keywords = ["postcode", "api", "validation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.2",
Expand All @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"Django>=5.2",
Expand Down Expand Up @@ -57,7 +58,7 @@ testpaths = ["tests"]

[tool.ruff]
line-length = 99
target-version = "py310"
target-version = "py314"

[tool.ruff.lint]
select = [
Expand All @@ -77,7 +78,7 @@ mccabe.max-complexity = 10
convention = "pep257"

[tool.mypy]
python_version = "3.10"
python_version = "3.14"
check_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
Expand Down
2 changes: 1 addition & 1 deletion src/django_postcode_lookup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

# major.minor.patch.release.number
# release must be one of alpha, beta, rc, or final
VERSION = (1, 0, 1, "final", 1)
VERSION = (2, 0, 0, "alpha", 0)

__version__ = get_version(VERSION)
Loading