Skip to content

Commit 858f113

Browse files
committed
Prepare pypi release
- use semantic versioning (0.7.0) - configure universal wheel - added link to GitHub Pages documentation - changed changelog to markdown, include it in manifest
1 parent e716e25 commit 858f113

File tree

6 files changed

+31
-25
lines changed

6 files changed

+31
-25
lines changed

CHANGELOG

Lines changed: 0 additions & 23 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# pytest-ordering2 Release Notes
2+
3+
## Version 0.7.0
4+
Imported version from [pytest-ordering](https://github.com/ftobia/pytest-ordering),
5+
including some PRs (manually merged).
6+
7+
### Added
8+
- Add support for markers like run(before=...), run(after=), run("first") etc.
9+
(imported from [PR #37](https://github.com/ftobia/pytest-ordering/pull/37))
10+
- Add ``--indulgent-ordering`` to request that the sort from
11+
pytest-ordering be run before other plugins. This allows the built-in
12+
``--failed-first`` implementation to override the ordering.
13+
(imported from [PR #50](https://github.com/ftobia/pytest-ordering/pull/50))
14+
- Include LICENSE file in distribution
15+
(imported from [PR #68](https://github.com/ftobia/pytest-ordering/pull/68))
16+
17+
### Infrastructure
18+
- PR #74 (imported)
19+
Add more pytest versions, fix pytest-cov compatibility issue,
20+
remove Python 3.4, add Python 3.8
21+
(imported from [PR #74](https://github.com/ftobia/pytest-ordering/pull/74))
22+
- moved documentation to [GitHub Pages](https://mrbean-bremen.github.io/pytest-ordering2/)

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
include LICENSE
1+
include LICENSE
2+
include CHANGELOG.md
3+
include README.md

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ Yields this output:
5151

5252
=========================== 2 passed in 0.01 seconds ===========================
5353

54+
You can find more information in the [documentation](https://mrbean-bremen.github.io/pytest-ordering2/).

pytest_ordering2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.7'
1+
__version__ = '0.7.0'

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[metadata]
2+
description-file = README.md
3+
[bdist_wheel]
4+
universal=1

0 commit comments

Comments
 (0)