Skip to content

Commit 2d33523

Browse files
update version, changelog and lint for 0.14.5 release
1 parent e0bffc8 commit 2d33523

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
4+
## [0.14.5] -- 2025-09-22
5+
### Changed
6+
- Remove veracitools dependency [#233](https://github.com/databio/pypiper/issues/233)
7+
38
## [0.14.4] -- 2025-02-25
49
### Changed
510
- Fixed warnings for Python >3.12

pypiper/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.14.4"
1+
__version__ = "0.14.5"

tests/helpers.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ def __init__(self, *args, **kwargs):
6868
kwd_args.update(kwargs)
6969
super(SafeTestPipeline, self).__init__(*args, **kwd_args)
7070

71+
7172
# originally imported from veracitools v0.1.4 (now deprecated)
7273
class ExpectContext(object):
73-
""" Pytest validation context, a framework for varied kinds of expectations. """
74+
"""Pytest validation context, a framework for varied kinds of expectations."""
7475

7576
def __init__(self, expected, test_func):
7677
"""
@@ -83,16 +84,16 @@ def __init__(self, expected, test_func):
8384
self._exp = expected
8485

8586
def __enter__(self):
86-
""" Return the instance for use as a callable. """
87+
"""Return the instance for use as a callable."""
8788
return self
8889

8990
def __exit__(self, exc_type, exc_val, exc_tb):
9091
pass
9192

9293
def __call__(self, *args, **kwargs):
93-
""" Execute the instance's function, passing given args/kwargs. """
94+
"""Execute the instance's function, passing given args/kwargs."""
9495
if isinstance(self._exp, type) and issubclass(self._exp, Exception):
9596
with pytest.raises(self._exp):
9697
self._f(*args, **kwargs)
9798
else:
98-
assert self._exp == self._f(*args, **kwargs)
99+
assert self._exp == self._f(*args, **kwargs)

0 commit comments

Comments
 (0)