-
Notifications
You must be signed in to change notification settings - Fork 84
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 #125 from UDST/develop
v0.4.4 release
- Loading branch information
Showing
10 changed files
with
83 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
v0.4.4 | ||
====== | ||
|
||
2019/9/4 | ||
|
||
* Restores support for pre-C++11 compilers. | ||
|
||
v0.4.3 | ||
====== | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
build: false | ||
|
||
environment: | ||
matrix: | ||
- PYTHON: 2.7 | ||
- PYTHON: 3.6 | ||
|
||
init: | ||
- "ECHO %PYTHON%" | ||
|
||
# The goal here is mainly to confirm that Pandana compiles in Windows; we're not | ||
# running any of the CI tests | ||
|
||
# Cython and NumPy need to be present before building Pandana. Some other | ||
# runtime requirements aren't installing well with Pip in win-py27, so I'm just | ||
# putting all of them into the Conda environment | ||
|
||
install: | ||
- "set PATH=C:\\Miniconda3;C:\\Miniconda3\\Scripts;%PATH%" | ||
- conda config --append channels conda-forge | ||
- "conda create --name test-env python=%PYTHON% pip cython matplotlib numpy osmnet pandas requests scikit-learn pytables --yes --quiet" | ||
- activate test-env | ||
- python setup.py install | ||
- conda list |
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
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,3 +1,3 @@ | ||
from .network import Network | ||
|
||
version = __version__ = '0.4.3' | ||
version = __version__ = '0.4.4' |
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
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