Skip to content

Commit 3668c05

Browse files
committed
updated
1 parent 195cacd commit 3668c05

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ classifiers = [
1616
"Operating System :: MacOS :: MacOS X",
1717
"Operating System :: Microsoft :: Windows",
1818
]
19+
dependencies = [
20+
"numpy",
21+
]
1922

2023
[project.urls]
2124
"Homepage" = "https://github.com/GvozdevLeonid/python_hackrf"
2225
"Bug Tracker" = "https://github.com/GvozdevLeonid/python_hackrf/issues"
2326

2427
[build-system]
2528
requires = [
26-
"cython==0.29.37",
29+
"Cython==0.29.37",
2730
"setuptools",
2831
"wheel",
2932
"numpy",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121

2222
if PLATFORM != 'android':
23-
SETUP_REQUIRES.append('cython==0.29.37')
24-
INSTALL_REQUIRES.append('cython==0.29.37')
23+
SETUP_REQUIRES.append('Cython==0.29.37')
24+
INSTALL_REQUIRES.append('Cython==0.29.37')
2525

2626
SETUP_REQUIRES.append('numpy')
2727
INSTALL_REQUIRES.append('numpy')

0 commit comments

Comments
 (0)