Skip to content

Commit

Permalink
Find another way to fix the build that seems to work now.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpgillam committed Feb 9, 2021
1 parent 54a4be8 commit 9b59dd9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
History
=======

0.1.4 (2021-02-09)
------------------

* Actually fix the build, maybe

0.1.3 (2021-02-09)
------------------

* Fix the build

0.1.2 (2021-02-09)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.4
commit = True
tag = True

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Available at setup time due to pyproject.toml
from pybind11.setup_helpers import Pybind11Extension, build_ext

__version__ = '0.1.2'
__version__ = '0.1.4'

with open('README.rst') as readme_file:
readme = readme_file.read()
Expand Down Expand Up @@ -55,5 +55,10 @@
# Currently, build_ext only provides an optional "highest supported C++
# level" feature, but in the future it may provide more features.
cmdclass={"build_ext": build_ext},

# We need to include this file in order to build the extension.
# Apparently this (seemingly hacky) workaround is the best google has to offer
# right now...
package_data={'': ["src/lester_mt2_bisect_v4.h"]},
zip_safe=False,
)

0 comments on commit 9b59dd9

Please sign in to comment.