Skip to content

Commit f1658b2

Browse files
committed
Push Release on Github
1 parent e2ff6a8 commit f1658b2

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

html5lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131

3232
# this has to be at the top level, see how setup.py parses this
3333
#: Distribution version number.
34-
__version__ = "1.2-dev"
34+
__version__ = "1.2"

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools"]
2+
requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -32,6 +32,9 @@ classifiers = [
3232
dependencies = []
3333
dynamic = ["version", "readme"]
3434

35+
[tool.setuptools]
36+
include-package-data = false # to disable including package data for tests (true by default)
37+
3538
[tool.setuptools.dynamic]
3639
version = {attr = "html5lib.__version__"} # any module attribute compatible with ast.literal_eval
3740
readme = {file = ["README.rst", "AUTHORS.rst"]}
@@ -40,4 +43,5 @@ readme = {file = ["README.rst", "AUTHORS.rst"]}
4043
where = ["."] # list of folders that contain the packages (["."] by default)
4144
include = ["html5lib*"] # package names should match these glob patterns (["*"] by default)
4245
exclude = ["html5lib.tests*"] # exclude packages matching these glob patterns (empty by default)
43-
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
46+
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
47+

0 commit comments

Comments
 (0)