Skip to content

Commit 434c943

Browse files
committed
Release 1.2.0
1 parent faeb682 commit 434c943

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
512
1.1.0
613
-----
714

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools.command.test import test as TestCommand
77

88

9-
version = '1.1.0'
9+
version = '1.2.0'
1010

1111

1212
class 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'

0 commit comments

Comments
 (0)