Skip to content

Commit a56f325

Browse files
committed
v0.1.7: Update CLI, add pytest, and update pypdf dependency.
1 parent c120cec commit a56f325

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1111

1212
### Added
1313
- Added CLI boolean handling to improve command-line interface usability.
14-
- Implemented additional checks for `input_type` values to enhance input validation.
1514
- Added new pytests for CLI to ensure correct handling of booleans.
1615
- Updated the README to reflect the new pytest additions.
1716
- Updated CI/CD pipelines to accommodate pytest changes.
1817

1918
### Changed
2019
- Improved input_type value check mechanism to use .lower() before checking against values 'vcf' or 'matrix'.
20+
- Updated dependency from PyPDF2 to pypdf to increase compatibility and resolve installation issues on bioconda.
2121

2222

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if os.path.exists("dist"):
77
shutil.rmtree("dist")
88

9-
VERSION = "0.1.6"
9+
VERSION = "0.1.7"
1010

1111

1212
def write_version_py(filename="SigProfilerAssignment/version.py"):
@@ -15,7 +15,7 @@ def write_version_py(filename="SigProfilerAssignment/version.py"):
1515
# THIS FILE IS GENERATED FROM SigProfilerAssignment SETUP.PY
1616
short_version = '%(version)s'
1717
version = '%(version)s'
18-
Update = 'v0.1.6: Add CLI and volume parameter for template files.'
18+
Update = 'v0.1.7: Update CLI, add pytest, and update pypdf dependency.'
1919
2020
2121
"""

0 commit comments

Comments
 (0)