-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from NREL/robust_set_fix
Bug fix and change README to point to pypi for installation.
- Loading branch information
Showing
5 changed files
with
41 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
gdx-pandas | ||
========== | ||
# gdx-pandas | ||
[![PyPI](https://img.shields.io/pypi/v/gdxpds.svg)](https://pypi.python.org/pypi/gdxpds/) | ||
|
||
Python package to translate between gdx (GAMS data) and pandas. | ||
|
||
|
@@ -145,16 +145,24 @@ with gdxpds.gdx.GdxFile() as gdx: | |
### Get the Latest Package | ||
```bash | ||
pip install git+https://github.com/NREL/gdx-pandas.git@master | ||
pip install gdxpds | ||
``` | ||
or | ||
or | ||
```bash | ||
pip install git+https://github.com/NREL/[email protected].3 | ||
pip install git+https://github.com/NREL/[email protected].4 | ||
``` | ||
Versions are listed at https://github.com/NREL/gdx-pandas/releases. | ||
or | ||
```bash | ||
pip install git+https://github.com/NREL/gdx-pandas.git@master | ||
``` | ||
Versions are listed at [pypi](https://pypi.python.org/pypi/gdxpds/) and | ||
https://github.com/NREL/gdx-pandas/releases. | ||
After installation, you can test the package using pytest: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
''' | ||
|
||
|
||
__version__ = '1.0.3' | ||
__version__ = '1.0.4' | ||
|
||
import logging | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
setup( | ||
name = 'gdxpds', | ||
version = "1.0.3", | ||
version = "1.0.4", | ||
author = 'Elaine T. Hale', | ||
author_email = '[email protected]', | ||
packages = ['gdxpds', 'gdxpds.test'], | ||
|