Skip to content

Commit 305748c

Browse files
committed
Fix wheel build
1 parent 1f25c61 commit 305748c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Version 1.3.3 (07/25/2023)
1010
* Add :code:`__init__` signature for Environment in comments to be visible in docs
1111
* Fix :code:`s -> sp` in :py:mod:`~pomdp_py.algorithms.value_iteration.ValueIteration` (`pomdp-py#20 <https://github.com/h2r/pomdp-py/issues/20>`_)
1212
* Allow updating rollout policy for :py:mod:`~pomdp_py.algorithms.po_uct.POUCT` and :py:mod:`~pomdp_py.algorithms.pomcp.POMCP`
13+
* Fix in :code:`setup.py` so that wheel builds properly.
1314
* Minor bug fixes and documentation.
1415

1516

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_extensions(pkg_name, major_submodules):
5252
ext_modules=cythonize(extensions,
5353
build_dir="build",
5454
compiler_directives={'language_level' : "3"}),
55-
package_data={"pomdp_py": ["*.pxd", "*.pyx"],
56-
"pomdp_problems": ["*.pxd", "*.pyx"]},
55+
package_data={"pomdp_py": ["*.pxd", "*.pyx", "*.so", "*.c"],
56+
"pomdp_problems": ["*.pxd", "*.pyx", "*.so", "*.c"]},
5757
zip_safe=False
5858
)

0 commit comments

Comments
 (0)