Skip to content

Commit 6a19409

Browse files
authored
Add 'require_config.js' to the pip package (#49)
1 parent a7708d2 commit 6a19409

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
0.4.4 (2022-01-10)
2+
==================
3+
4+
Fixed
5+
-------
6+
- Add 'require_config.js' to the pip package (#48)
7+
8+
19
0.4.3 (2022-01-08)
210
==================
311

412
Changed
513
-------
6-
714
- When a JS function is created on the Python side, we export it as-is (without quotes) in the HTML file and don't use JS eval anymore.
815

916

itables/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""ITables' version number"""
22

3-
__version__ = "0.4.3"
3+
__version__ = "0.4.4"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
long_description_content_type="text/markdown",
2424
url="https://github.com/mwouts/itables",
2525
packages=find_packages(exclude=["tests"]),
26-
package_data={"itables": ["javascript/*.*", "datatables_template.html"]},
26+
package_data={"itables": ["require_config.js", "datatables_template.html"]},
2727
tests_require=["pytest"],
2828
install_requires=["IPython", "pandas"],
2929
license="MIT",

0 commit comments

Comments
 (0)