From 94ecfdff75ed1857f5175a9d98fcb7361446ace6 Mon Sep 17 00:00:00 2001 From: Nelle Varoquaux Date: Fri, 19 Jan 2024 14:43:47 +0100 Subject: [PATCH] FIX python version --- .github/workflows/test.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7b2957..7c748b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: ["3.9", "3.10", "3.11", "3.12"] PIP_FLAGS: [""] MINIMUM_REQUIREMENTS: [0] include: diff --git a/setup.py b/setup.py index 76284e8..e98839b 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,6 @@ "License :: OSI Approved :: BSD License", ], packages=find_packages(where="."), - include_package_data=True, ext_modules=[ Extension(name="iced._filter_", sources=["iced/_filter_.pyx"], @@ -48,5 +47,6 @@ sources=["iced/normalization/_normalization_.pyx"], include_dirs=[np.get_include()] )], + include_package_data=True, )