From 1588bc90a7c859b20db48fca72cf801ce47bcff2 Mon Sep 17 00:00:00 2001 From: Sam Maurer Date: Tue, 5 Feb 2019 13:50:21 -0800 Subject: [PATCH 1/4] Adding manifest --- MANIFEST.in | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..88d690d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +# files to include in the source distribution on pypi (setup.py and README.md are included automatically) + +include CHANGELOG.md +include CONTRIBUTING.md +include LICENSE.txt +include requirements.txt +include requirements-extras.txt From 7140194bcf8998b4e9e12315e0e11cc90bfca8c3 Mon Sep 17 00:00:00 2001 From: Sam Maurer Date: Tue, 5 Feb 2019 13:52:07 -0800 Subject: [PATCH 2/4] Bumping version number --- CHANGELOG.md | 4 ++++ docs/source/index.rst | 2 +- setup.py | 2 +- urbansim_templates/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd74648..e9c36f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # UrbanSim Templates change log +### 0.1.1 (2019-02-05) + +- production release + ### 0.1.1.dev1 (2019-01-30) - adds support for passing multiple tables of interaction terms in large MNL diff --git a/docs/source/index.rst b/docs/source/index.rst index b184d70..2ba8129 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -10,7 +10,7 @@ UrbanSim Templates provides building blocks for Orca-based simulation models. It The library contains templates for common types of model steps, plus a tool called ModelManager that runs as an extension to the `Orca `__ task orchestrator. ModelManager can register template-based model steps with the orchestrator, save them to disk, and automatically reload them for future sessions. -v0.1.1.dev1, released January 30, 2019 +v0.1.1, released February 5, 2019 Contents diff --git a/setup.py b/setup.py index 0ca7c44..5c11e2b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='urbansim_templates', - version='0.1.1.dev1', + version='0.1.1', description='UrbanSim extension for managing model steps', author='UrbanSim Inc.', author_email='info@urbansim.com', diff --git a/urbansim_templates/__init__.py b/urbansim_templates/__init__.py index 33004fa..e47f992 100644 --- a/urbansim_templates/__init__.py +++ b/urbansim_templates/__init__.py @@ -1 +1 @@ -version = __version__ = '0.1.1.dev1' +version = __version__ = '0.1.1' From a0ed7cc83ffa59a1554aa8e175729845a1c0436d Mon Sep 17 00:00:00 2001 From: Sam Maurer Date: Tue, 5 Feb 2019 13:53:24 -0800 Subject: [PATCH 3/4] Cleanup --- MANIFEST.in | 1 - 1 file changed, 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 88d690d..9686643 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,6 @@ # files to include in the source distribution on pypi (setup.py and README.md are included automatically) include CHANGELOG.md -include CONTRIBUTING.md include LICENSE.txt include requirements.txt include requirements-extras.txt From 7a80dd8ba29c68b71480498dc1cbcbd6ee0a25fc Mon Sep 17 00:00:00 2001 From: Sam Maurer Date: Tue, 5 Feb 2019 13:58:33 -0800 Subject: [PATCH 4/4] Link updates in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1753b48..9ecadd2 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ [![Build Status](https://travis-ci.org/UDST/urbansim_templates.svg?branch=master)](https://travis-ci.org/UDST/urbansim_templates) [![Coverage Status](https://coveralls.io/repos/github/UDST/urbansim_templates/badge.svg?branch=master)](https://coveralls.io/github/UDST/urbansim_templates?branch=master) -[![Docs Status](https://readthedocs.org/projects/urbansim_templates/badge/?version=latest)](http://docs.udst.org/projects/urbansim-templates/en/latest) +[![Docs Status](https://readthedocs.org/projects/urbansim_templates/badge/?version=latest)](https://docs.udst.org/projects/urbansim-templates/en/latest) # UrbanSim Templates -UrbanSim Templates is a Python library that provides building blocks for Orca-based simulation models. It's part of the [Urban Data Science Toolkit](http://docs.udst.org) (UDST). +UrbanSim Templates is a Python library that provides building blocks for Orca-based simulation models. It's part of the [Urban Data Science Toolkit](https://docs.udst.org) (UDST). The library contains templates for common types of model steps, plus a tool called ModelManager that runs as an extension to the [Orca](https://udst.github.io/orca) task orchestrator. ModelManager can register template-based model steps with the orchestrator, save them to disk, and automatically reload them for future sessions. The package was developed to make it easier to set up new simulation models — model step templates reduce the need for custom code and make settings more portable between models. @@ -21,7 +21,7 @@ conda install urbansim_templates --channel conda-forge ### Documentation -See the online documentation for much more: [http://docs.udst.org/projects/urbansim-templates](http://docs.udst.org/projects/urbansim-templates/en/latest) +See the online documentation for much more: [http://docs.udst.org/projects/urbansim-templates](https://docs.udst.org/projects/urbansim-templates/en/latest) Some additional documentation is available within the repo in `CHANGELOG.md`, `CONTRIBUTING.md`, `/docs/README.md`, and `/tests/README.md`.