Skip to content

Commit bf6d6c5

Browse files
committed
Version 1.0.8
1 parent 2672cf1 commit bf6d6c5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ v1.0.7, 2015-MAR-31 -- Null and NaN values fixed and customizable (config nullva
2727
It will print 'Null' on the screen but nullvalue on the files
2828
-- Added a SQL syntax checker (<SQL query> ; < check)
2929
-- Reformatted help
30-
v1.0.8, 2015-XXX-XX -- Fixed bug with single character for fits
30+
v1.0.8, 2015-APR-27 -- Fixed bug with single character for fits
3131
-- Fix enconding issues (between ASCII and UTF-8)
3232
-- Loading bar termination issue fixed
3333
-- Added message after loading table for sharing tables

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ Refactored version of trivialAccess for accessing the DES DB
66
Python Command Line Interpreter to access Oracle DES DB
77
using cx_Oracle
88

9-
For a short tutorial chek [here](http://deslogin.cosmology.illinois.edu/~mcarras2/data/DESDM.html)
9+
For a short tutorial (To be completed) chek [here](http://deslogin.cosmology.illinois.edu/~mcarras2/data/DESDM.html)
1010
(Using des credentials)
1111

1212

13-
**Current version = 1.0.7**
13+
**Current version = 1.0.8**
1414

1515
## Requirements
1616

1717
- Oracle Client > 11g.2 (External library, no python)
1818
Check [here](https://deswiki.cosmology.illinois.edu/confluence/display/CMBT/Instructions+for+installing+Oracle+client+and+easyaccess+without+EUPS) for instructions on how to install these libraries
19-
- cx_Oracle
20-
- pyfits >= 3.3
21-
- pandas >= 0.14
22-
- termcolor
23-
- PyTables (optional, for hdf5 output)
19+
- [cx_Oracle](https://bitbucket.org/anthony_tuininga/cx_oracle)
20+
- [fitsio](https://github.com/esheldon/fitsio)
21+
- [pandas](http://pandas.pydata.org/) >= 0.14
22+
- [termcolor](https://pypi.python.org/pypi/termcolor)
23+
- [PyTables](http://pytables.github.io/) (optional, for hdf5 output)
2424

2525
## Some *nice* features
2626
- Smart tab completion for commands, table names, column names and file paths accordingly

easyaccess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
__author__ = 'Matias Carrasco Kind'
3-
__version__ = '1.0.8b'
3+
__version__ = '1.0.8'
44
# TODO:
55
# add other formats in load tables from fits (like boolean or complex)
66
# clean up, comments

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read(filename):
1515
include_dirs = []
1616
setup(
1717
name='easyaccess',
18-
version='1.0.8b',
18+
version='1.0.8',
1919
author='Matias Carrasco Kind',
2020
author_email='[email protected]',
2121
scripts=['easyaccess'],

0 commit comments

Comments
 (0)