Skip to content

Commit 3f06837

Browse files
committed
revert namespace package change
1 parent a4f1b2c commit 3f06837

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

array_api_compat/dask/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup, find_namespace_packages
1+
from setuptools import setup, find_packages
22

33
with open("README.md", "r") as fh:
44
long_description = fh.read()
@@ -8,7 +8,7 @@
88
setup(
99
name='array_api_compat',
1010
version=array_api_compat.__version__,
11-
packages=find_namespace_packages(include=["array_api_compat*"]),
11+
packages=find_packages(include=["array_api_compat*"]),
1212
author="Consortium for Python Data API Standards",
1313
description="A wrapper around NumPy and other array libraries to make them compatible with the Array API standard",
1414
long_description=long_description,

0 commit comments

Comments
 (0)