Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix file install location bug #13

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion act_dr6_lenslike/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Likelihood for the Atacama Cosmology Telescope DR6 CMB lensing data."""
__author__ = ["Mathew Madhavacheril", "Ian Harrison"]
__version__ = "1.0.3"
__version__ = "1.0.5"

from .act_dr6_lenslike import *
2 changes: 1 addition & 1 deletion act_dr6_lenslike/act_dr6_lenslike.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_data(data_url="https://lambda.gsfc.nasa.gov/data/suborbital/ACT/ACT_dr6/
download(data_url+data_filename, data_filename)

tar = tarfile.open(data_filename)
tar.extractall()
tar.extractall(path=os.path.join(file_dir, data_dir).rstrip('v1.1/')) # this is not great
tar.close()

os.remove(data_filename)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ classifiers = [
"License :: OSI Approved :: BSD License",
]
dynamic = ["version", "description"]
dependencies = ["numpy >=1", "scipy >=1"]
dependencies = ["numpy >=1", "scipy >=1", "pytest", "tqdm", "requests"]

[project.urls]
Source = "https://github.com/ACTCollaboration/act_dr6_lenslike"