diff --git a/setup.cfg b/setup.cfg index 721a3e0..b7fb5f1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -43,7 +43,7 @@ include_package_data = True install_requires = numpy humanize - tskit + tskit >=0.3.3 numcodecs zarr setup_requires = diff --git a/tszip/cli.py b/tszip/cli.py index 6d46223..6abb2a2 100644 --- a/tszip/cli.py +++ b/tszip/cli.py @@ -138,7 +138,7 @@ def run_decompress(args): check_output(outfile, args) with check_load_errors(file_arg): ts = tszip.decompress(file_arg) - ts.dump(str(outfile)) + ts.dump(outfile) logger.info(f"Wrote {outfile}") remove_input(infile, args)