File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ Changelog
22=========
33
44
5+ 1.2.0
6+ -----
7+
8+ * Fix --fixture-graph-output-dir and --fixture-graph-output-type by @youtux in https://github.com/pytest-dev/pytest-fixture-tools/pull/5
9+ * Python and pytest compatibility fixes by @ogajduse in https://github.com/pytest-dev/pytest-fixture-tools/pull/7
10+ * Drop support for EOL Python versions
11+
5121.1.0
613-----
714
Original file line number Diff line number Diff line change 66from setuptools .command .test import test as TestCommand
77
88
9- version = '1.1 .0'
9+ version = '1.2 .0'
1010
1111
1212class ToxTestCommand (TestCommand ):
@@ -49,7 +49,7 @@ def run_tests(self):
4949 'Topic :: Utilities' ,
5050 'Programming Language :: Python :: 2' ,
5151 'Programming Language :: Python :: 3'
52- ] + [('Programming Language :: Python :: %s' % x ) for x in '2.6 2.7 3.0 3.1 3.2 3.3 ' .split ()],
52+ ] + [('Programming Language :: Python :: %s' % x ) for x in '3.8 3.9 3.10 3.11 3.12 ' .split ()],
5353 cmdclass = {'test' : ToxTestCommand },
5454 install_requires = [
5555 'pytest' , 'pydot' , 'py'
You can’t perform that action at this time.
0 commit comments