Skip to content

Commit 6a3e68d

Browse files
committed
pyusb compatibility: discard only PyUSB == 1.2.0
1 parent e2a4eac commit 6a3e68d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

pyftdi/doc/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@ Python dependencies
131131

132132
Dependencies should be automatically installed with PIP.
133133

134-
* pyusb >= 1.0.0, < 1.2.0
134+
* pyusb >= 1.0.0, != 1.2.0
135135
* pyserial >= 3.0
136136

137137
Do *not* install PyUSB_ from GitHub development branch (``master``, ...).
138138
Always prefer a stable, tagged release.
139139

140140
PyUSB 1.2.0 also broke the backward compatibility of the Device API, so it will
141-
not work with PyFtdi for the time being.
141+
not work with PyFtdi.
142142

143143
Installing with PIP
144144
```````````````````

pyftdi/doc/requirements.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ libraries:
1616
PyFtdi_ does not depend on any other native library, and only uses standard
1717
Python modules along with PyUSB_ and pyserial_.
1818

19-
PyFtdi_ is beeing tested with PyUSB_ 1.0.2.
19+
PyFtdi_ is beeing tested with PyUSB_ 1.1.0.
2020

2121
Development
2222
~~~~~~~~~~~

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyusb>=1.0, < 1.2.0
1+
pyusb>=1.0, != 1.2.0
22
pyserial >= 3.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
'Topic :: System :: Hardware :: Hardware Drivers',
4747
]
4848
INSTALL_REQUIRES = [
49-
'pyusb >= 1.0.0, < 1.2.0',
49+
'pyusb >= 1.0.0, != 1.2.0',
5050
'pyserial >= 3.0',
5151
]
5252
TEST_REQUIRES = [

0 commit comments

Comments
 (0)