-
-
Notifications
You must be signed in to change notification settings - Fork 58
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 #133 from ECSIM/develop
Version 1.2
- Loading branch information
Showing
63 changed files
with
33,535 additions
and
33,379 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,4 +10,4 @@ | |
|
||
#### Python Version | ||
|
||
#### OPEM Version | ||
#### OPEM Version (Use : `opem.__version__`) |
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,6 +1,19 @@ | ||
#!/bin/bash | ||
set -e | ||
set -x | ||
|
||
pip install -r requirements.txt | ||
python setup.py install | ||
PYTHON_COMMAND=python | ||
PIP_COMMAND=pip | ||
if [ "$TRAVIS_OS_NAME" == "osx" ] | ||
then | ||
PYTHON_COMMAND=python3 | ||
PIP_COMMAND=pip3 | ||
fi | ||
$PIP_COMMAND install -r requirements.txt | ||
$PYTHON_COMMAND setup.py install | ||
$PYTHON_COMMAND -m opem test | ||
if [ "$TRAVIS_OS_NAME" == "osx" ] | ||
then | ||
$PIP_COMMAND install --upgrade --upgrade-strategy=only-if-needed -r dev-requirements.txt --user | ||
else | ||
$PIP_COMMAND install --upgrade --upgrade-strategy=only-if-needed -r dev-requirements.txt | ||
fi |
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
Oops, something went wrong.