Skip to content

Commit

Permalink
Adjust pyperclip version requirements
Browse files Browse the repository at this point in the history
This is being done because the pyperclip bug that broke the
clipboard for Python 2.7 (issue no. 129) has now been fixed.
  • Loading branch information
drmfinlay committed Oct 24, 2018
1 parent b9b59c9 commit 0af5d76
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion documentation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mock
pyperclip==1.6.1
pyperclip>=1.7.0
six
4 changes: 0 additions & 4 deletions dragonfly/util/clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
from six import text_type
import pyperclip

# This can be removed once pyperclip issue #129 is resolved.
import pkg_resources
pkg_resources.require("pyperclip == 1.6.1")


class BaseClipboard(object):
@classmethod
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def read(*names):
"setuptools >= 0.6c7",
"pywin32;platform_system=='Windows'",
"six",
"pyperclip == 1.6.1"
"pyperclip >= 1.7.0"
],

extras_require={
Expand Down

0 comments on commit 0af5d76

Please sign in to comment.