Skip to content

Commit 7a4f8b7

Browse files
committed
- Fix requirements: it turns out that we require pytest 3.7.0 already
since version 0.5.0 - Claim to support Python 3.9
1 parent 0ebc10f commit 7a4f8b7

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

.req

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest >=3.6.0
1+
pytest >=3.7.0
22
setuptools_scm

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- "3.6"
77
- "3.7"
88
- "3.8"
9+
- "3.9"
910
install: pip install -r .req
1011
script: make test PYTHON=python
1112

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ System requirements
3333

3434
+ Python 2.7 or 3.4 and newer.
3535
+ `setuptools`_.
36-
+ `pytest`_ 3.6.0 or newer.
36+
+ `pytest`_ 3.7.0 or newer.
3737

3838
Optional library packages:
3939

doc/src/changelog.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dev (not yet released)
88
.. _#40: https://github.com/RKrahl/pytest-dependency/issues/40
99

1010
0.5.1 (2020-02-14)
11-
1211
Bug fixes and minor changes
1312
+ Fix failing documentation build.
1413

@@ -17,6 +16,9 @@ dev (not yet released)
1716
+ `#3`_, `#35`_: add a scope to dependencies.
1817
(Thanks to JoeSc and selenareneephillips!)
1918

19+
Incompatible changes
20+
+ Require pytest version 3.7.0 or newer.
21+
2022
Bug fixes and minor changes
2123
+ `#34`_: failing test with pytest 4.2.0 and newer.
2224
+ Use setuptools_scm to manage the version number.

doc/src/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Configuration file options can be set in the `ini file`.
2121

2222
minversion
2323
This is a builtin configuration option of pytest itself. Since
24-
pytest-dependency requires pytest 3.6.0 or newer, it is recommended
25-
to set this option accordingly, either to 3.6.0 or to a newer
24+
pytest-dependency requires pytest 3.7.0 or newer, it is recommended
25+
to set this option accordingly, either to 3.7.0 or to a newer
2626
version, if required by your test code.
2727

2828
automark_dependency

doc/src/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ System requirements
66

77
+ Python 2.7 or 3.4 and newer.
88
+ `setuptools`_.
9-
+ `pytest`_ 3.6.0 or newer.
9+
+ `pytest`_ 3.7.0 or newer.
1010

1111

1212
.. _install-other-packages:

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class sdist(copy_file_mixin, distutils.command.sdist.sdist):
9090
'Source Code': 'https://github.com/RKrahl/pytest-dependency',
9191
},
9292
py_modules=['pytest_dependency'],
93-
install_requires=['pytest >= 3.6.0'],
93+
install_requires=['pytest >= 3.7.0'],
9494
classifiers=[
9595
'Development Status :: 4 - Beta',
9696
'Framework :: Pytest',
@@ -105,6 +105,7 @@ class sdist(copy_file_mixin, distutils.command.sdist.sdist):
105105
'Programming Language :: Python :: 3.6',
106106
'Programming Language :: Python :: 3.7',
107107
'Programming Language :: Python :: 3.8',
108+
'Programming Language :: Python :: 3.9',
108109
'Operating System :: OS Independent',
109110
'License :: OSI Approved :: Apache Software License',
110111
],

tests/pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pytest]
2-
minversion = 3.6
2+
minversion = 3.7

0 commit comments

Comments
 (0)