Skip to content

Commit

Permalink
finalized release 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iossifov committed Sep 16, 2022
1 parent 32d88ae commit f146a72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions autpop/population_threshold_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -851,8 +851,9 @@ def cli(cli_args=None):
modelsD = {m.model_name: m for m in models}
models = [modelsD[mn] for mn in args.model]

out_dir = args.out_dir
if not out_dir:
if args.output_dir:
out_dir = pathlib.Path(args.output_dir)
else:
pre, _ = os.path.splitext(args.models_file)
out_dir = pathlib.Path(pre + "_results")
out_dir.mkdir(parents=True, exist_ok=True)
Expand Down
4 changes: 3 additions & 1 deletion conda.recipe/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
git tag -a 0.1 -m 'version 0.1'
git push origin 0.1

To build the package:
To build the package, first, make sure that there are no results stored
in the demo directory. Then run:

conda build .

To upload to anaconda:
Expand Down

0 comments on commit f146a72

Please sign in to comment.