Skip to content

Commit

Permalink
update astropy requirement to 2.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolopanis committed Nov 27, 2019
1 parent 5e393b9 commit 8b1175c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ will also be flexible to enable the third goal, and we welcome contributions (se

## Installation
Preferred method of installation for users is simply `pip install .`
(or `pip install git+https://github.com/HERA-Team/hera_qm`). This will install
(or `pip install git+https://github.com/HERA-Team/hera_qm`). This will install
required dependencies. See below for manual dependency management.

### Dependencies
If you are using `conda`, you may wish to install the following dependencies manually
to avoid them being installed automatically by `pip`::

$ conda install -c conda-forge "numpy>=1.10" "astropy>=2.0" "aipy>=3.0rc2" h5py pyuvdata
$ conda install -c conda-forge "numpy>=1.10" "astropy>=2.0.16" "aipy>=3.0rc2" h5py pyuvdata

### Developing
If you are developing `hera_qm`, it is preferred that you do so in a fresh `conda`
environment. The following commands will install all relevant development packages::
Expand All @@ -37,9 +37,9 @@ environment. The following commands will install all relevant development packag
$ conda create -n hera_qm python=3
$ conda activate hera_qm
$ conda env update -n hera_qm -f environment.yml
$ pip install -e .
$ pip install -e .

This will install extra dependencies required for testing/development as well as the
This will install extra dependencies required for testing/development as well as the
standard ones.

### Running Tests
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- numpy>=1.10
- pip
- astropy>=2.0
- astropy>=2.0.16
- h5py
- six
- pyuvdata
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def package_files(package_dir, subdirectory):
'package_data': {'hera_qm': data_files},
'setup_requires': ['pytest-runner'],
'install_requires': [
'astropy>=2.0',
'astropy>=2.0.16',
'h5py',
'six',
'numpy>=1.10',
Expand Down

0 comments on commit 8b1175c

Please sign in to comment.