Skip to content

Commit

Permalink
Missing build dependency for numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Jul 2, 2021
1 parent cbbf64a commit 5bc93ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "tableauhyperapi"]
requires = ["setuptools", "wheel", "tableauhyperapi", "numpy"]

[tool.towncrier]
package = "pantab"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
package_data={"": ["*.h"], "pantab.tests": ["data/*"]},
data_files=[("", ["LICENSE.txt", "README.md"])],
python_requires=">=3.7",
install_requires=["pandas", "tableauhyperapi"],
install_requires=["pandas", "tableauhyperapi", "numpy"],
extras_require={"dev": ["pytest"]},
ext_modules=[pantab_module],
)

0 comments on commit 5bc93ef

Please sign in to comment.