Skip to content

Commit

Permalink
Merge pull request #103 from a-detiste/master
Browse files Browse the repository at this point in the history
remove dependency on old mock
  • Loading branch information
meejah authored Mar 20, 2024
2 parents 3b6f93e + d0e7feb commit ff1edf6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run(self):
"cmdclass": commands,
"install_requires": ["six", "twisted[tls] >= 16.0.0", "pyOpenSSL"],
"extras_require": {
"dev": ["mock", "txtorcon >= 19.0.0",
"dev": ["txtorcon >= 19.0.0",
"txi2p-tahoe >= 0.3.5; python_version > '3.0'",
"txi2p >= 0.3.2; python_version < '3.0'",
"pywin32 ; sys_platform == 'win32'"],
Expand Down
2 changes: 1 addition & 1 deletion src/foolscap/test/test_connection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import mock
from unittest import mock
from zope.interface import implementer
from twisted.trial import unittest
from twisted.internet import endpoints, defer, reactor
Expand Down
2 changes: 1 addition & 1 deletion src/foolscap/test/test_logging.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import os, sys, json, time, bz2, base64, re
import six
import mock
from unittest import mock
from io import StringIO
from zope.interface import implementer
from twisted.trial import unittest
Expand Down

0 comments on commit ff1edf6

Please sign in to comment.