File tree 5 files changed +14
-8
lines changed
5 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
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
+
3
9
## v1.4.6
4
10
#### 2019-JAN-14
5
11
- No minor changes to the code, just the general documentation
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ RUN apt-get install -y libaio1
9
9
RUN conda create -n env python=3.6
10
10
RUN echo "source activate env" > ~/.bashrc
11
11
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
13
13
RUN useradd --create-home --shell /bin/bash des --uid 1001
14
14
WORKDIR /home/des
15
15
USER des
Original file line number Diff line number Diff line change 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 )
2
2
3
3
Enhanced command line SQL interpreter client for astronomical surveys.
4
4
![ help_screen] ( data/help.gif )
@@ -8,7 +8,7 @@ Enhanced command line SQL interpreter client for astronomical surveys.
8
8
9
9
For a short tutorial check [ here] ( http://matias-ck.com/easyaccess )
10
10
11
- ** Current version = 1.4.6 **
11
+ ** Current version = 1.4.7 **
12
12
13
13
#### DES DR1 users
14
14
For DES public data release, you can start ` easyaccess ` with:
@@ -52,7 +52,7 @@ You can clone this repository and install `easyaccess` with:
52
52
#### Pip installation
53
53
` easyaccess ` can also be installed using ` pip ` but it'd require the installation of the oracle instant client first as described above
54
54
55
- pip install easyaccess==1.4.6
55
+ pip install easyaccess==1.4.7
56
56
57
57
or directly from github:
58
58
@@ -61,7 +61,7 @@ or directly from github:
61
61
#### Conda installation
62
62
For Collaborators, now easyaccess can be installed using [ conda] ( http://conda.pydata.org/docs/install/quick.html ) out of the box!
63
63
64
- conda install easyaccess==1.4.6 -c mgckind -c anaconda
64
+ conda install easyaccess==1.4.7 -c mgckind -c anaconda
65
65
66
66
#### Docker
67
67
For collaborators, We have a Docker image with easyaccess pre-installed which you can obtained from:
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : easyaccess
3
- version : " 1.4.6 "
3
+ version : " 1.4.7 "
4
4
5
5
source :
6
- git_rev : 1.4.6
6
+ git_rev : 1.4.7
7
7
git_url : https://github.com/mgckind/easyaccess.git
8
8
9
9
build :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def last_pip_version():
26
26
return sorted (uploads , key = lambda x : x [1 ])[- 1 ][0 ]
27
27
28
28
29
- version_tag = (1 , 4 , 6 )
29
+ version_tag = (1 , 4 , 7 )
30
30
__version__ = "." .join (map (str , version_tag [:3 ]))
31
31
32
32
if len (version_tag ) > 3 :
You can’t perform that action at this time.
0 commit comments