Skip to content

Commit 684ea6e

Browse files
committed
switched to c cython3
1 parent 7539180 commit 684ea6e

File tree

9 files changed

+340
-245
lines changed

9 files changed

+340
-245
lines changed

MANIFEST.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
include python_hackrf/pylibhackrf/chackrf.pxd
1+
include python_hackrf/pyhackrf_tools/pyhackrf_transfer.pyi
2+
include python_hackrf/pyhackrf_tools/pyhackrf_transfer.pxd
3+
include python_hackrf/pyhackrf_tools/pyhackrf_sweep.pyi
4+
include python_hackrf/pyhackrf_tools/pyhackrf_sweep.pxd
25
include python_hackrf/pylibhackrf/pyhackrf.pyi
36
include python_hackrf/pylibhackrf/pyhackrf.pyx
47
include python_hackrf/pylibhackrf/pyhackrf.pxd
8+
include python_hackrf/pylibhackrf/chackrf.pxd
59
include pyproject.toml
610
include README.md

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "python_hackrf"
3-
version = "1.3.2"
3+
version = "1.4.0"
44
authors = [
55
{name="Leonid Gvozdev", email="[email protected]"},
66
]
77
description = "This is a wrapper for hackrf. It includes both libhackrf and hackrf-tools"
88
readme = "README.md"
9-
requires-python = ">=3.9"
9+
requires-python = ">=3.10"
1010
classifiers = [
1111
"License :: OSI Approved :: MIT License",
1212
"Programming Language :: Python :: 3",
@@ -26,7 +26,7 @@ dependencies = [
2626

2727
[build-system]
2828
requires = [
29-
"Cython==0.29.37",
29+
"Cython>=3.1.0,<3.2",
3030
"setuptools",
3131
"wheel",
3232
"numpy",

python_hackrf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.3.2'
1+
__version__ = '1.4.0'
22

33
from python_hackrf.pylibhackrf import pyhackrf # noqa F401
44
from python_hackrf.pyhackrf_tools import ( # noqa F401

0 commit comments

Comments
 (0)