Skip to content

Commit 79dcb7b

Browse files
committed
fix nox
1 parent 95c4107 commit 79dcb7b

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

docs/source/about/changelog.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ Unreleased
2626
No changes.
2727

2828

29-
v1.0.0
30-
------
31-
:octicon:`milestone` *released on 2023-02-25*
32-
33-
No changes.
34-
35-
3629
v1.0.0-a6
3730
---------
3831
:octicon:`milestone` *released on 2023-02-23*

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def build_python(session: Session) -> None:
229229

230230

231231
@group.session
232-
def tag(session: Session) -> None:
232+
def tag(session: Session, version: str) -> None:
233233
"""Create a new git tag"""
234234
try:
235235
session.run(
@@ -254,7 +254,7 @@ def tag(session: Session) -> None:
254254
session.error("To many arguments")
255255

256256
try:
257-
new_version = session.posargs[0]
257+
new_version = version
258258
except IndexError:
259259
session.error("No version tag given")
260260

0 commit comments

Comments
 (0)