Skip to content

Commit

Permalink
Simplified tests (#17)
Browse files Browse the repository at this point in the history
* Lint!

* Bump version: 0.8.0 → 0.8.1
  • Loading branch information
flipbit03 authored Jun 19, 2023
1 parent d50e718 commit d6b7f51
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.0
current_version = 0.8.1
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "sqlalchemy-easy-softdelete"
version = "0.8.0"
version = "0.8.1"
homepage = "https://github.com/flipbit03/sqlalchemy-easy-softdelete"
description = "Easily add soft-deletion to your SQLAlchemy Models."
authors = ["Cadu <cadu.coelho@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion sqlalchemy_easy_softdelete/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Cadu"""
__email__ = 'cadu.coelho@gmail.com'
__version__ = '0.8.0'
__version__ = '0.8.1'
2 changes: 0 additions & 2 deletions tests/utils/simple_select_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,5 @@ def extract_simple_selects(statement: Union[Select, CompoundSelect]) -> list[Sel
continue
elif isinstance(from_obj, Subquery):
return extract_simple_selects(from_obj.element)
else:
print("oh no")

raise NotImplementedError(f"Should not reach this point! statement.froms -> \"{statement.froms}\"!")

0 comments on commit d6b7f51

Please sign in to comment.