Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ogajduse committed Aug 15, 2024
1 parent faeb682 commit 434c943
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Changelog
=========


1.2.0
-----

* Fix --fixture-graph-output-dir and --fixture-graph-output-type by @youtux in https://github.com/pytest-dev/pytest-fixture-tools/pull/5
* Python and pytest compatibility fixes by @ogajduse in https://github.com/pytest-dev/pytest-fixture-tools/pull/7
* Drop support for EOL Python versions

1.1.0
-----

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools.command.test import test as TestCommand


version = '1.1.0'
version = '1.2.0'


class ToxTestCommand(TestCommand):
Expand Down Expand Up @@ -49,7 +49,7 @@ def run_tests(self):
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
] + [('Programming Language :: Python :: %s' % x) for x in '2.6 2.7 3.0 3.1 3.2 3.3'.split()],
] + [('Programming Language :: Python :: %s' % x) for x in '3.8 3.9 3.10 3.11 3.12'.split()],
cmdclass={'test': ToxTestCommand},
install_requires=[
'pytest', 'pydot', 'py'
Expand Down

0 comments on commit 434c943

Please sign in to comment.