Skip to content

Commit

Permalink
Fix incorrect license-files in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
craigds committed Jan 22, 2025
1 parent 16d68cc commit 114481b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
dynamic = ["version"]
authors = [{ name = "Craig de Stigter", email = "[email protected]" }]
license = "BSD-3-Clause"
license-files = { paths = ["LICENSE.txt"] }
license-files = ["LICENSE.txt"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
Expand All @@ -29,7 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dependencies = ["django_stubs_ext"]
dependencies = ["django_stubs_ext", "typing-extensions"]
requires-python = ">=3.9"

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion typedmodels/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.0b1"
__version__ = "0.15.0b2"

0 comments on commit 114481b

Please sign in to comment.