Skip to content

Commit 7e1a99f

Browse files
committed
update Changes and bump up to versio 1.4.7
1 parent 81d6a77 commit 7e1a99f

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes
22

3+
4+
## v1.4.7
5+
#### 2019-FEB-21
6+
- Update FAQ (PR #171)
7+
- Remove DB names restriction to allow other DBs (PR #170)
8+
39
## v1.4.6
410
#### 2019-JAN-14
511
- No minor changes to the code, just the general documentation

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get install -y libaio1
99
RUN conda create -n env python=3.6
1010
RUN echo "source activate env" > ~/.bashrc
1111
ENV PATH /opt/conda/envs/env/bin:$PATH
12-
RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.6
12+
RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.7
1313
RUN useradd --create-home --shell /bin/bash des --uid 1001
1414
WORKDIR /home/des
1515
USER des

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# easyaccess <a href="https://github.com/mgckind/easyaccess/releases/tag/1.4.6"> <img src="https://img.shields.io/badge/release-v1.4.6-blue.svg" alt="latest release" /></a> <a href="https://github.com/mgckind/easyaccess/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/license-NCSA%20License-blue.svg" alt="License" /> </a> <a href="https://pypi.python.org/pypi/easyaccess/1.4.6"><img src="https://img.shields.io/badge/pypi-v1.4.6-orange.svg" alt="pypi version"/></a> ![](https://img.shields.io/conda/v/mgckind/easyaccess.svg) ![](https://img.shields.io/conda/pn/mgckind/easyaccess.svg) ![](https://img.shields.io/badge/python-2.7%7C3.6-blue.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01022/status.svg)](https://doi.org/10.21105/joss.01022)
1+
# easyaccess <a href="https://github.com/mgckind/easyaccess/releases/tag/1.4.7"> <img src="https://img.shields.io/badge/release-v1.4.7-blue.svg" alt="latest release" /></a> <a href="https://github.com/mgckind/easyaccess/blob/master/LICENSE.txt"><img src="https://img.shields.io/badge/license-NCSA%20License-blue.svg" alt="License" /> </a> <a href="https://pypi.python.org/pypi/easyaccess/1.4.7"><img src="https://img.shields.io/badge/pypi-v1.4.7-orange.svg" alt="pypi version"/></a> ![](https://img.shields.io/conda/v/mgckind/easyaccess.svg) ![](https://img.shields.io/conda/pn/mgckind/easyaccess.svg) ![](https://img.shields.io/badge/python-2.7%7C3.6-blue.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01022/status.svg)](https://doi.org/10.21105/joss.01022)
22

33
Enhanced command line SQL interpreter client for astronomical surveys.
44
![help_screen](data/help.gif)
@@ -8,7 +8,7 @@ Enhanced command line SQL interpreter client for astronomical surveys.
88

99
For a short tutorial check [here](http://matias-ck.com/easyaccess)
1010

11-
**Current version = 1.4.6**
11+
**Current version = 1.4.7**
1212

1313
#### DES DR1 users
1414
For DES public data release, you can start `easyaccess` with:
@@ -52,7 +52,7 @@ You can clone this repository and install `easyaccess` with:
5252
#### Pip installation
5353
`easyaccess` can also be installed using `pip` but it'd require the installation of the oracle instant client first as described above
5454

55-
pip install easyaccess==1.4.6
55+
pip install easyaccess==1.4.7
5656

5757
or directly from github:
5858

@@ -61,7 +61,7 @@ or directly from github:
6161
#### Conda installation
6262
For Collaborators, now easyaccess can be installed using [conda](http://conda.pydata.org/docs/install/quick.html) out of the box!
6363

64-
conda install easyaccess==1.4.6 -c mgckind -c anaconda
64+
conda install easyaccess==1.4.7 -c mgckind -c anaconda
6565

6666
#### Docker
6767
For collaborators, We have a Docker image with easyaccess pre-installed which you can obtained from:

config/conda/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: easyaccess
3-
version: "1.4.6"
3+
version: "1.4.7"
44

55
source:
6-
git_rev: 1.4.6
6+
git_rev: 1.4.7
77
git_url: https://github.com/mgckind/easyaccess.git
88

99
build:

easyaccess/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def last_pip_version():
2626
return sorted(uploads, key=lambda x: x[1])[-1][0]
2727

2828

29-
version_tag = (1, 4, 6)
29+
version_tag = (1, 4, 7)
3030
__version__ = ".".join(map(str, version_tag[:3]))
3131

3232
if len(version_tag) > 3:

0 commit comments

Comments
 (0)