-
Notifications
You must be signed in to change notification settings - Fork 21
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 #53 from UDST/dev
Finalizing v1.5.4 release
- Loading branch information
Showing
19 changed files
with
90 additions
and
60 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,3 +1,8 @@ | ||
v1.5.4 | ||
====== | ||
|
||
* Support for PyToolz 0.11+ | ||
|
||
v1.5.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,23 @@ | ||
Orca | ||
==== | ||
|
||
.. image:: https://img.shields.io/pypi/v/orca.svg | ||
:target: https://pypi.python.org/pypi/orca/ | ||
:alt: PyPI Latest Version | ||
|
||
.. image:: https://travis-ci.org/UDST/orca.svg?branch=master | ||
:target: https://travis-ci.org/UDST/orca | ||
:alt: Build Status | ||
|
||
.. image:: https://coveralls.io/repos/UDST/orca/badge.svg?branch=master | ||
:target: https://coveralls.io/r/UDST/orca?branch=master | ||
:alt: Coverage | ||
|
||
.. image:: https://img.shields.io/pypi/wheel/orca.svg | ||
:target: https://pypi.python.org/pypi/orca/ | ||
:alt: Wheel Status | ||
Orca | ||
==== | ||
|
||
Orca is a Python library for task orchestration. It's designed for workflows like city simulation, where the data representing a model's state is so large that it needs to be managed outside of the task graph. | ||
|
||
The building blocks of a workflow are "steps", Python functions that can be assembled on the fly into linear or cyclical pipelines. Steps typically interact with a central data store that persists in memory while the pipeline runs. Derived tables and columns can be updated automatically as base data changes, and pipeline components are evaluated lazily to reduce unnecessary overhead. | ||
|
||
Orca is a pipeline orchestration tool that allows you to define dynamic data | ||
sources and explicitly connect them to processing functions. | ||
Orca has many features for working with `Pandas <http://pandas.pydata.org/>`__ | ||
data structures, but it can be used with anything. | ||
Orca is used in `UrbanSim <https://github.com/udst/urbansim>`__ and other projects. | ||
|
||
Learn more in the official docs at https://udst.github.io/orca/. | ||
Documentation | ||
------------- | ||
|
||
Building the Orca UI JS Bundle | ||
------------------------------ | ||
- `udst.github.io/orca/ <https://udst.github.io/orca/>`__ | ||
|
||
Orca ships with a bundle of JavaScript for the server UI. | ||
If you've installed Orca from ``pip`` or ``conda`` you already have the | ||
bundle, but if you're working on Orca you might need to build it manually: | ||
Installation | ||
------------ | ||
|
||
* Make sure `nodejs <https://nodejs.org/>`__ is installed. | ||
(I use `Homebrew <http://brew.sh/>`__ on my Mac.) | ||
* Install `gulp <http://gulpjs.com/>`__: ``npm install -g gulp`` | ||
* Change directories to ``orca/server/static`` | ||
* Run ``npm install`` to install dependencies | ||
* Build the bundle: ``gulp js-build``, or | ||
* Watch JS files to rebuild the bundle on changes: ``gulp js-watch`` | ||
- ``pip install orca`` | ||
- ``conda install orca --channel conda-forge`` |
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,31 @@ | ||
This folder generates the Orca online documentation, hosted at https://udst.github.io/orca/. | ||
|
||
### How it works | ||
|
||
HTML files are generated using [Sphinx](http://sphinx-doc.org) and hosted with GitHub Pages from the `gh-pages` branch of the repository. The online documentation is rendered and updated **manually**. | ||
|
||
### Editing the documentation | ||
|
||
The files in `docs/source`, along with docstrings in the source code, determine what appears in the rendered documentation. Here's a [good tutorial](https://pythonhosted.org/an_example_pypi_project/sphinx.html) for Sphinx. | ||
|
||
### Previewing changes locally | ||
|
||
Install the copy of Orca that the documentation is meant to reflect. Install the documentation tools. | ||
|
||
``` | ||
pip install . | ||
pip install sphinx sphinx_rtd_theme numpydoc | ||
``` | ||
|
||
Build the documentation. There should be status messages and warnings, but no errors. | ||
|
||
``` | ||
cd docs | ||
sphinx-build -b html source build | ||
``` | ||
|
||
The HTML files will show up in `docs/build/`. | ||
|
||
### Uploading changes | ||
|
||
Clone a second copy of the repository and check out the `gh-pages` branch. Copy over the updated HTML files, commit them, and push the changes to GitHub. |
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 @@ | ||
*/* |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
|
||
from .orca import * | ||
|
||
version = __version__ = '1.5.3' | ||
version = __version__ = '1.5.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
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