Skip to content

Commit

Permalink
Drop the test dependency on mock
Browse files Browse the repository at this point in the history
With the drop of Python 3.7 the tests where ported but the test_requires still
kept mock.
  • Loading branch information
jelly authored and icemac committed Nov 10, 2023
1 parent ea7a9b0 commit cad1357
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 cad1357

Please sign in to comment.