Skip to content

Commit

Permalink
Ready to create new release, now on github.com.
Browse files Browse the repository at this point in the history
  • Loading branch information
elainethale committed Jul 24, 2015
1 parent d42c69b commit 69296c9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v0.4.0, 07/24/15 -- add license and release on github.com
v0.3.0, 12/30/14 -- add improved version of gdxdict.py to package
add lazy_load to read_gdx.Translator (uses gdxdict.gdxdict's new lazy_load)
add list_symbols and to_dataframe read methods
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for symbol_name, df in dataframes.items():
print("Doing work with {}.".format(symbol_name))
```

And within the loop, df is a pandas.DataFrame with unhelpful column names (#1) except
And within the loop, df is a pandas.DataFrame with unhelpful column names except
for 'value'.

And vice-versa:
Expand Down Expand Up @@ -73,18 +73,18 @@ python C:\your_python_path\Scripts\csv_to_gdx.py --help
### Get the Latest Package

```bash
pip install git+ssh://git@github.nrel.gov/ehale/gdx-pandas.git@master
pip install git+https://github.com/NREL/gdx-pandas.git@master
```

or

```bash
pip install git+ssh://git@github.nrel.gov/ehale/gdx-pandas.git@v0.3.0
pip install git+https://github.com/NREL/gdx-pandas.git@v0.4.0
```

Versions are listed at https://github.nrel.gov/ehale/gdx-pandas/releases.
Versions are listed at https://github.com/NREL/gdx-pandas/releases.

Unfortunately on Windows, while this command nominally works (after running it, `pip list` will show cpest as installed), it may [exit with errors](http://stackoverflow.com/q/23938896/1470262).
Unfortunately on Windows, while this command nominally works (after running it, `pip list` will show gdxpds as installed), it may [exit with errors](http://stackoverflow.com/q/23938896/1470262).

After installation, you can test the package using nose:

Expand Down
4 changes: 2 additions & 2 deletions gdxpds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
[/LICENSE]
'''

__version__ = '0.3.0'
__version__ = '0.4.0'

from gdxpds.read_gdx import to_dataframes
from gdxpds.read_gdx import list_symbols
from gdxpds.read_gdx import to_dataframe
from gdxpds.write_gdx import to_gdx
from gdxpds.write_gdx import to_gdx
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
author_email = '[email protected]',
packages = ['gdxpds', 'gdxpds.test'],
scripts = ['bin/csv_to_gdx.py', 'bin/gdx_to_csv.py'],
url = 'https://github.nrel.gov/ehale/gdx-pandas',
url = 'https://github.com/NREL/gdx-pandas',
description = 'Python package to translate between gdx (GAMS data) and pandas.',
long_description=open('README.md').read(),
package_data={
Expand Down

0 comments on commit 69296c9

Please sign in to comment.