Skip to content

Commit 3f2410d

Browse files
committed
maint: add hidapi package as project requirement (issue #100)
1 parent d7b8cb6 commit 3f2410d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

NEWS

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ Version 0.3.0 (yyyy/mm/dd)
1010
changed signature. The arguments to the device constructor must
1111
now be passed as a dict.
1212

13-
* Python 3.5 or later is now required. Python 2 is no longer
14-
supported. This drops the dependency on the six and enum34.
13+
* Python 2 is no longer supported.
14+
15+
* New requirements:
16+
* Python >= 3.5
17+
* hidapi
18+
19+
* Removed requirements:
20+
* enum34
21+
* six
1522

1623
* `CoboltLaser` now has a default value for its `baud` argument.
1724

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,9 @@ def make_distribution(self):
161161
python_requires = '>=3.5',
162162

163163
install_requires = [
164-
"numpy",
165164
"Pyro4",
165+
"hidapi",
166+
"numpy",
166167
"pyserial",
167168
],
168169

0 commit comments

Comments
 (0)