Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Version 0.0.16
  • Loading branch information
Kludex committed Oct 27, 2024
commit 0e0c72171c5282b111bfb91f6bc1db7edbfc7eaa
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.0.16 (2024-10-27)

* Add dunder attributes to `multipart` package [#176](https://github.com/Kludex/python-multipart/pull/176).

## 0.0.15 (2024-10-27)

* Replace `FutureWarning` to `PendingDeprecationWarning` [#174](https://github.com/Kludex/python-multipart/pull/174).
Expand Down
1 change: 1 addition & 0 deletions multipart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@
else:
warnings.warn("Please use `import python_multipart` instead.", PendingDeprecationWarning, stacklevel=2)
from python_multipart import *
from python_multipart import __all__, __author__, __copyright__, __license__, __version__
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ Source = "https://github.com/Kludex/python-multipart"
path = "python_multipart/__init__.py"

[tool.hatch.build.targets.sdist]
include = ["/python_multipart", "/multipart", "/tests", "CHANGELOG.md", "LICENSE.txt"]
include = [
"/python_multipart",
"/multipart",
"/tests",
"CHANGELOG.md",
"LICENSE.txt",
]

[tool.hatch.build.targets.wheel]
packages = ["python_multipart", "multipart"]
Expand All @@ -92,6 +98,7 @@ split-on-trailing-comma = false

[tool.ruff.lint.per-file-ignores]
"multipart/*.py" = ["F403"]
"__init__.py" = ["F401"]

[tool.coverage.run]
branch = false
Expand All @@ -115,10 +122,4 @@ exclude_lines = [
]

[tool.check-sdist]
git-only = [
"docs",
"fuzz",
"scripts",
"mkdocs.yml",
"uv.lock"
]
git-only = ["docs", "fuzz", "scripts", "mkdocs.yml", "uv.lock"]
2 changes: 1 addition & 1 deletion python_multipart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__author__ = "Andrew Dunham"
__license__ = "Apache"
__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
__version__ = "0.0.15"
__version__ = "0.0.16"

from .multipart import (
BaseParser,
Expand Down