Skip to content

Commit

Permalink
Revert PR kliment#712 "Add a wrapper around pySerial"
Browse files Browse the repository at this point in the history
This reverts commit 8c04675, reversing changes made to dfb8077.

The wrapper around pyserial is no longer needed since it was intended
only for pyserial versions under 2.7.
  • Loading branch information
rockstorm101 committed Mar 3, 2018
1 parent 46edc1c commit 0c66403
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 51 deletions.
2 changes: 1 addition & 1 deletion printrun/printcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
print("You need to run this on Python 3")
sys.exit(-1)

from .serialWrapper import Serial, SerialException, PARITY_ODD, PARITY_NONE
from serial import Serial, SerialException, PARITY_ODD, PARITY_NONE
from select import error as SelectError
import threading
from queue import Queue, Empty as QueueEmpty
Expand Down
49 changes: 0 additions & 49 deletions printrun/serialWrapper.py

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# python (>= 3.6)
pyreadline
pyserial (>= 2.6)
pyserial >= 2.7
wxPython (>= 4.0)
numpy (>= 1.8.2)
pyglet (>= 1.1)
Expand Down

0 comments on commit 0c66403

Please sign in to comment.