Skip to content

Commit 72f791d

Browse files
committed
fix
1 parent 8edecab commit 72f791d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
version=metadata["version"],
2626
description=metadata["description"],
2727
python_requires=options["python_requires"],
28-
packages=find_packages(where=os.path.join(os.path.dirname(__file__), "..")),
28+
packages=["."],
2929
entry_points=entry_points,
3030
)

conda-recipe/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ outputs:
6565
script: |
6666
cd cli
6767
python -m pip install . --no-deps --ignore-installed --prefix=$PREFIX
68+
cd ..
6869
6970
requirements:
7071
build:
@@ -88,7 +89,7 @@ outputs:
8889
# pure-Python wrapper) into the test environment, so the
8990
# test can import it.
9091
source_files:
91-
- ../../tests/python/*.py
92+
- tests/python/*.py
9293

9394
# Invoke pytest on the copied file(s).
9495
commands:

0 commit comments

Comments
 (0)