Skip to content

Commit

Permalink
FIX python version
Browse files Browse the repository at this point in the history
  • Loading branch information
NelleV committed Jan 19, 2024
1 parent 41d45df commit 94ecfdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -48,5 +47,6 @@
sources=["iced/normalization/_normalization_.pyx"],
include_dirs=[np.get_include()]
)],
include_package_data=True,
)

0 comments on commit 94ecfdf

Please sign in to comment.