diff --git a/caw/movedata.py b/caw/movedata.py index af9aa5a..c43b1f7 100644 --- a/caw/movedata.py +++ b/caw/movedata.py @@ -106,6 +106,12 @@ def download_file(t: Tuple[Path, DownloadableFile]) -> int: except requests.exceptions.RequestException as e: typer.secho(f'Failed to download {remote_file.file_resource}: {str(e)}', fg=typer.colors.RED, err=True) + if sys.version_info.minor < 10: + typer.secho( + 'This is probably a bug in Python itself. ' + 'See https://github.com/FNNDSC/caw/issues/12', + fg=typer.colors.YELLOW, err=True + ) pool.shutdown(cancel_futures=True) # fail fast raise typer.Abort() progress.update(1) diff --git a/setup.py b/setup.py index d5a724f..b6bb4cd 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='caw', - version='0.6.1a2', + version='0.6.1', packages=find_packages(exclude=('*.tests',)), url='https://github.com/FNNDSC/caw', license='MIT', @@ -28,4 +28,3 @@ 'Topic :: Scientific/Engineering :: Medical Science Apps.' ] ) -