Skip to content

Commit

Permalink
Fix scapy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
x committed Nov 19, 2020
1 parent 63a5b7b commit 16b9b86
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README-中文.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ sudo pip3 install bluescan

```txt
$ bluescan -h
bluescan v0.3.0
bluescan v0.3.1
A powerful Bluetooth scanner.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sudo pip3 install bluescan

```txt
$ bluescan -h
bluescan v0.3.0
bluescan v0.3.1
A powerful Bluetooth scanner.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run(self):
if __name__ == '__main__':
setup(
name='bluescan',
version='0.3.0',
version='0.3.1',
license = "GPL-3.0",
packages=find_packages('src'), # include all packages under src
package_dir={'':'src'}, # tell distutils packages are under src
Expand All @@ -60,7 +60,7 @@ def run(self):
#scripts=['src/bluescan/bluescan.py'],

install_requires=[
'bthci>=0.0.10', 'pyclui>=0.0.3',
'bthci>=0.0.11', 'pyclui>=0.0.3', "scapy>=2.4.4",
'pybluez>=0.23', 'bluepy>=1.3.0', 'docopt>=0.6.2'
],

Expand Down
4 changes: 2 additions & 2 deletions src/bluescan/ui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

r'''bluescan v0.3.0
r'''bluescan v0.3.1
A powerful Bluetooth scanner.
Expand Down Expand Up @@ -48,7 +48,7 @@


def parse_cmdline() -> dict:
args = docopt(__doc__, version='v0.3.0', options_first=True)
args = docopt(__doc__, version='v0.3.1', options_first=True)
#print("[Debug] args =", args)

args['-m'] = args['-m'].lower()
Expand Down

0 comments on commit 16b9b86

Please sign in to comment.