Skip to content

Commit

Permalink
Release version 0.2.3
Browse files Browse the repository at this point in the history
This release is mainly to fix Python classifiers displayed in Pypi
A classifier for Python 3.10 was previously missing
  • Loading branch information
olzhasar committed Dec 30, 2021
1 parent 2beaabd commit ff3889c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-watcher"
version = "0.2.2"
version = "0.2.3"
description = "Continiously runs pytest on changes in *.py files"
authors = ["Olzhas Arystanov <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pytest_watcher/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.2"
__version__ = "0.2.3"

from .watcher import run

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pytest_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def test_version():
assert __version__ == "0.2.2"
assert __version__ == "0.2.3"


@pytest.fixture()
Expand Down

0 comments on commit ff3889c

Please sign in to comment.