Skip to content

Commit d2b8381

Browse files
authored
vdk-duckdb: fix missing requirement
Install requirements need to be set in setup.py otherwise they will not be installed during pip install vdk-duckdb. requirements.txt is only for testing requirements.
1 parent f6e6fcc commit d2b8381

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

projects/vdk-plugins/vdk-duckdb/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# for requirements (dependencies) needed during and after installation of the plugin see (and update) setup.py install_requires section
33

44
click
5-
duckdb
65
pytest
76

87
pytest

projects/vdk-plugins/vdk-duckdb/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description="DuckDB Plugin for VDK.",
1818
long_description=pathlib.Path("README.md").read_text(),
1919
long_description_content_type="text/markdown",
20-
install_requires=["vdk-core", "tabulate"],
20+
install_requires=["vdk-core", "tabulate", "duckdb"],
2121
package_dir={"": "src"},
2222
packages=setuptools.find_namespace_packages(where="src"),
2323
# This is the only vdk plugin specific part

0 commit comments

Comments
 (0)