-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare v1.4.0, see CHANGELOG.md for details
- Loading branch information
1 parent
2446602
commit 271f51c
Showing
14 changed files
with
98 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,7 +133,6 @@ int main(int argc, const char* argv[]) { | |
continue; | ||
} | ||
} | ||
|
||
} | ||
|
||
fstream out; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@PACKAGE_INIT@ | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
|
||
set(@PROJECT_NAME@_FOUND TRUE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule pybind11
updated
19 files
+2 −2 | .github/CONTRIBUTING.md | |
+2 −0 | .github/workflows/ci.yml | |
+2 −2 | .github/workflows/format.yml | |
+6 −6 | .pre-commit-config.yaml | |
+0 −28 | docs/advanced/misc.rst | |
+1 −34 | docs/changelog.rst | |
+1 −1 | include/pybind11/attr.h | |
+4 −4 | include/pybind11/detail/common.h | |
+0 −3 | include/pybind11/detail/internals.h | |
+1 −1 | include/pybind11/eigen/tensor.h | |
+7 −27 | include/pybind11/pytypes.h | |
+0 −1 | include/pybind11/stl.h | |
+4 −8 | include/pybind11/stl_bind.h | |
+1 −1 | pybind11/_version.py | |
+0 −2 | tests/test_class.cpp | |
+1 −10 | tests/test_class.py | |
+0 −2 | tests/test_pytypes.cpp | |
+0 −6 | tests/test_pytypes.py | |
+5 −4 | tools/make_changelog.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,9 +60,6 @@ def build_extension(self, ext: CMakeExtension) -> None: | |
if "CMAKE_ARGS" in os.environ: | ||
cmake_args += [item for item in os.environ["CMAKE_ARGS"].split(" ") if item] | ||
|
||
# In this example, we pass in the version to C++. You might not need to. | ||
cmake_args += [f"-DEXAMPLE_VERSION_INFO={self.distribution.get_version()}"] # type: ignore[attr-defined] | ||
|
||
if self.compiler.compiler_type != "msvc": | ||
# Using Ninja-build since it a) is available as a wheel and b) | ||
# multithreads automatically. MSVC would require all variables be | ||
|
@@ -133,7 +130,7 @@ def build_extension(self, ext: CMakeExtension) -> None: | |
# logic and declaration, and simpler if you include description/version in a file. | ||
setup( | ||
name="pyhtml2md", | ||
version="1.3.0", | ||
version="1.4.0", | ||
author="Tim Gromeyer", | ||
author_email="[email protected]", | ||
description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters