Skip to content

Commit 5e769e0

Browse files
committed
updated
1 parent b326ffd commit 5e769e0

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ dist/
66
.DS_Store
77
.pypirc
88

9-
*.egg-info
9+
*.egg-info
10+
11+
python_hackrf/libhackrf/hackrf_old.h
12+
python_hackrf/libhackrf/hackrf_old.c

android/python_hackrf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
class PythonHackrffRecipe(CythonRecipe):
8-
version = '1.0.3'
8+
version = '1.0.5'
99
url = 'https://github.com/GvozdevLeonid/python_hackrf/releases/download/v.{version}/python_hackrf-{version}.tar.gz'
1010
depends = ['python3', 'setuptools', 'libusb']
1111
site_packages_name = 'python_hackrf'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python_hackrf"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
authors = [
55
{name="Leonid Gvozdev", email="[email protected]"},
66
]

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
INSTALL_REQUIRES = []
1515
SETUP_REQUIRES = []
16-
LIBRARY_RELEASE = '2023.01.1'
16+
LIBRARY_RELEASE = '2023.01.1+'
1717
LIBRARY_VERSION = '0.8'
1818

1919
PLATFORM = sys.platform
@@ -47,7 +47,7 @@
4747
name='python_hackrf',
4848
author='Leonid Gvozdev',
4949
author_email='[email protected]',
50-
version='1.0.4',
50+
version='1.0.5',
5151
cmdclass={'build_ext': build_ext},
5252
install_requires=INSTALL_REQUIRES,
5353
setup_requires=SETUP_REQUIRES,
@@ -56,7 +56,7 @@
5656
name='python_hackrf.libhackrf.pyhackrf',
5757
sources=source_files,
5858
libraries=libraries,
59-
include_dirs=['python_hackrf/libhackrf', numpy.get_include()],
59+
include_dirs=['python_hackrf/libhackrf', numpy.get_include()],
6060
define_macros=[("LIBRARY_VERSION", f'"{LIBRARY_VERSION}"'), ("LIBRARY_RELEASE", f'"{LIBRARY_RELEASE}"')],
6161
extra_compile_args=['-w'],
6262
),

0 commit comments

Comments
 (0)