Skip to content

Commit c333b38

Browse files
chore: semantic versioning (#71)
1 parent 4090bcf commit c333b38

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/pytest-rts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
uses: adityaa30/check-commit@master
1414

1515
test:
16+
needs: check
1617
name: Lint and test
1718
runs-on: ubuntu-latest
1819
strategy:

pytest_rts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""pytest-rts: avoid already imported warning: PYTEST_DONT_REWRITE"""
2-
__version__ = "1.0.0"
2+
__version__ = "1.0.0"

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77

88

99
GIT_VERSION = subprocess.check_output("git describe --always".split()).strip().decode("ascii")
10-
DEV_REQUIRE = ["pytest-cov", "pytest-socket", "tox", "python-semantic-release", "black", "mypy", "pylint", "safety"]
10+
DEV_REQUIRE = [
11+
"pytest-cov", "pytest-socket", "tox", "python-semantic-release", "black", "mypy",
12+
"pylint", "safety"
13+
]
1114

1215
# pylint: disable=line-too-long
1316
setup(

0 commit comments

Comments
 (0)