Skip to content

Commit

Permalink
setup.py updated
Browse files Browse the repository at this point in the history
  • Loading branch information
rpoleski committed Jan 12, 2022
1 parent d66663a commit 374df9b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
source_MMmo = source_MM / "mulensobjects"

# Read all files from data/ in format adequate for data_files option of setup.
files = [
files = [file_required.relative_to(PROJECT_PATH)]
files += [
f.relative_to(PROJECT_PATH) for f in DATA_PATH.rglob("*") if f.is_file()]
data_files = {str(f): str(f) for f in files}

Expand Down
2 changes: 1 addition & 1 deletion source/MulensModel/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.3.0"
__version__ = "2.3.1"

0 comments on commit 374df9b

Please sign in to comment.