Skip to content

Commit

Permalink
requirements, file locations
Browse files Browse the repository at this point in the history
  • Loading branch information
itrharrison committed Oct 13, 2023
1 parent 4f569ce commit 1e18461
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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"

0 comments on commit 1e18461

Please sign in to comment.