Skip to content

Commit

Permalink
update Changes and bump up to versio 1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mgckind committed Feb 21, 2019
1 parent 81d6a77 commit 7e1a99f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes


## v1.4.7
#### 2019-FEB-21
- Update FAQ (PR #171)
- Remove DB names restriction to allow other DBs (PR #170)

## v1.4.6
#### 2019-JAN-14
- No minor changes to the code, just the general documentation
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get install -y libaio1
RUN conda create -n env python=3.6
RUN echo "source activate env" > ~/.bashrc
ENV PATH /opt/conda/envs/env/bin:$PATH
RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.6
RUN conda install --yes -c anaconda -c mgckind easyaccess==1.4.7
RUN useradd --create-home --shell /bin/bash des --uid 1001
WORKDIR /home/des
USER des
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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)
# 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)

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

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

**Current version = 1.4.6**
**Current version = 1.4.7**

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

pip install easyaccess==1.4.6
pip install easyaccess==1.4.7

or directly from github:

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

conda install easyaccess==1.4.6 -c mgckind -c anaconda
conda install easyaccess==1.4.7 -c mgckind -c anaconda

#### Docker
For collaborators, We have a Docker image with easyaccess pre-installed which you can obtained from:
Expand Down
4 changes: 2 additions & 2 deletions config/conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: easyaccess
version: "1.4.6"
version: "1.4.7"

source:
git_rev: 1.4.6
git_rev: 1.4.7
git_url: https://github.com/mgckind/easyaccess.git

build:
Expand Down
2 changes: 1 addition & 1 deletion easyaccess/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def last_pip_version():
return sorted(uploads, key=lambda x: x[1])[-1][0]


version_tag = (1, 4, 6)
version_tag = (1, 4, 7)
__version__ = ".".join(map(str, version_tag[:3]))

if len(version_tag) > 3:
Expand Down

0 comments on commit 7e1a99f

Please sign in to comment.