Skip to content

Commit

Permalink
Drop the test dependency on mock (#121)
Browse files Browse the repository at this point in the history
With the drop of Python 2.7 the tests where ported but the test_requires still kept mock.
  • Loading branch information
jelly authored Nov 10, 2023
1 parent ea7a9b0 commit f3dfdb0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ def _read_file(filename):

README = _read_file('README.rst') + '\n\n' + _read_file('CHANGES.rst')

tests_require = ['mock']

setup(name='transaction',
version=version,
description='Transaction management for Python',
Expand Down Expand Up @@ -74,7 +72,6 @@ def _read_file(filename):
],
extras_require={
'docs': ['Sphinx', 'repoze.sphinx.autointerface'],
'test': tests_require,
'testing': ['coverage'] + tests_require,
'testing': ['coverage'],
},
)

0 comments on commit f3dfdb0

Please sign in to comment.