Skip to content

Commit

Permalink
Fix #84 : remove deprecated and old Options
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Jan 13, 2024
1 parent 33e6ff2 commit eab4404
Show file tree
Hide file tree
Showing 18 changed files with 161 additions and 638 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ Changelog
========= ======================================================================
Version Description
========= ======================================================================
0.17.0 * Remove deprecated options and deprecated functions. More tests.
0.16.9 * Fix slurm sys exit (replaced by print)
* upadte doc
* more tests
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
#maintainer ?#maintainer email
[tool.poetry]
name = "sequana_pipetools"
version = "0.16.9"
version = "0.17.0"
description = "A set of tools to help building or using Sequana pipelines"
authors = ["Sequana Team"]
license = "BSD-3"
Expand Down
8 changes: 4 additions & 4 deletions sequana_pipetools/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,17 @@ def print_version(name):
print(f"sequana_{name} version: ?")

try:
version = get_package_version(f"sequana")
version = get_package_version("sequana")
print(f"Sequana version: {version}")
except Exception: # pragma: no cover
pass
print(f"Sequana version: not found")

try:
version = get_package_version(f"sequana_pipetools")
version = get_package_version("sequana_pipetools")
print(f"Sequana_pipetools version: {version}")
except Exception as err: # pragma: no cover
print(err)
print("Sequana_pipetools version: ?")
print("Sequana_pipetools version: not found")

print(Colors().purple("\nHow to help ?\n- Please, consider citing us (see sequana.readthedocs.io)"))
print(Colors().purple("- Contribute to the code or documentation"))
Expand Down
Loading

0 comments on commit eab4404

Please sign in to comment.