Skip to content

Commit 463227e

Browse files
committed
Review README and bump copyright year
1 parent eb48f32 commit 463227e

File tree

3 files changed

+7
-62
lines changed

3 files changed

+7
-62
lines changed

README.rst

Lines changed: 5 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -15,61 +15,10 @@
1515
pytest-dependency – Manage dependencies of tests
1616
================================================
1717

18-
This pytest plugin manages dependencies of tests. It allows to mark
19-
some tests as dependent from other tests. These tests will then be
20-
skipped if any of the dependencies did fail or has been skipped.
21-
22-
23-
Download
24-
--------
25-
26-
The latest release version can be found `at PyPI`__.
27-
28-
.. __: `PyPI site`_
29-
30-
31-
System requirements
32-
-------------------
33-
34-
+ Python 3.4 and newer.
35-
+ `setuptools`_.
36-
+ `pytest`_ 3.7.0 or newer.
37-
38-
Optional library packages:
39-
40-
+ `git-props`_
41-
42-
This package is used to extract some metadata such as the version
43-
number out of git, the version control system. All releases embed
44-
that metadata in the distribution. So this package is only needed
45-
to build out of the plain development source tree as cloned from
46-
GitHub, but not to build a release distribution.
47-
48-
+ `distutils-pytest`_ >= 0.2
49-
50-
Only needed to run the test suite.
51-
52-
53-
Installation
54-
------------
55-
56-
1. Download the sources, unpack, and change into the source directory.
57-
58-
2. Build (optional)::
59-
60-
$ python setup.py build
61-
62-
3. Test (optional)::
63-
64-
$ python setup.py test
65-
66-
4. Install::
67-
68-
$ python setup.py install
69-
70-
The last step might require admin privileges in order to write into
71-
the site-packages directory of your Python installation.
72-
18+
This module is a plugin for the popular Python testing framework
19+
`pytest`_. It manages dependencies of tests: you may mark some tests
20+
as dependent from other tests. These tests will then be skipped if
21+
any of the dependencies did fail or has been skipped.
7322

7423
Documentation
7524
-------------
@@ -87,7 +36,7 @@ Copyright and License
8736

8837
- Copyright 2013–2015
8938
Helmholtz-Zentrum Berlin für Materialien und Energie GmbH
90-
- Copyright 2016–2020 Rolf Krahl
39+
- Copyright 2016–2023 Rolf Krahl
9140

9241
Licensed under the `Apache License`_, Version 2.0 (the "License"); you
9342
may not use this file except in compliance with the License.
@@ -99,10 +48,6 @@ implied. See the License for the specific language governing
9948
permissions and limitations under the License.
10049

10150

102-
.. _PyPI site: https://pypi.org/project/pytest-dependency/
103-
.. _setuptools: http://pypi.python.org/pypi/setuptools/
10451
.. _pytest: http://pytest.org/
105-
.. _git-props: https://github.com/RKrahl/git-props
106-
.. _distutils-pytest: https://github.com/RKrahl/distutils-pytest
10752
.. _Read the Docs site: https://pytest-dependency.readthedocs.io/
10853
.. _Apache License: https://www.apache.org/licenses/LICENSE-2.0

doc/src/about.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Copyright and License
7171

7272
- Copyright 2013–2015
7373
Helmholtz-Zentrum Berlin für Materialien und Energie GmbH
74-
- Copyright 2016–2020 Rolf Krahl
74+
- Copyright 2016–2023 Rolf Krahl
7575

7676
Licensed under the `Apache License`_, Version 2.0 (the "License"); you
7777
may not use this file except in compliance with the License.

doc/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# -- Project information -----------------------------------------------------
2020

2121
project = 'pytest-dependency'
22-
copyright = '2016–2020, Rolf Krahl'
22+
copyright = '2016–2023, Rolf Krahl'
2323
author = 'Rolf Krahl'
2424

2525
# The full version, including alpha/beta/rc tags

0 commit comments

Comments
 (0)