Skip to content

Commit

Permalink
fix nox
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Mar 1, 2023
1 parent 95c4107 commit 79dcb7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions docs/source/about/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ Unreleased
No changes.


v1.0.0
------
:octicon:`milestone` *released on 2023-02-25*

No changes.


v1.0.0-a6
---------
:octicon:`milestone` *released on 2023-02-23*
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def build_python(session: Session) -> None:


@group.session
def tag(session: Session) -> None:
def tag(session: Session, version: str) -> None:
"""Create a new git tag"""
try:
session.run(
Expand All @@ -254,7 +254,7 @@ def tag(session: Session) -> None:
session.error("To many arguments")

try:
new_version = session.posargs[0]
new_version = version
except IndexError:
session.error("No version tag given")

Expand Down

0 comments on commit 79dcb7b

Please sign in to comment.