Skip to content

Commit

Permalink
2022.1.0 release prep (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon committed Dec 28, 2022
1 parent 3d17690 commit 1100398
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ def check_types(session):
@nox.session
def format(session, check=False):
"""Format the code."""
for tool in ("black", "isort"):
session.install(tool)
args = ["--check"] if check else []
args.append(".")
session.run(tool, *args)
tool = "black"
session.install(tool)
args = ["--check"] if check else []
args.append(".")
session.run(tool, *args)


@nox.session
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "mousebender"
version = "2022.0.0"
version = "2022.1.0"
authors = [
{ name = "Brett Cannon", email = "brett@python.org" },
{ name = "Derek Keeler", email = "derek@suchcool.ca" },
Expand Down

0 comments on commit 1100398

Please sign in to comment.