Skip to content

Commit

Permalink
update version documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
e-lo committed Feb 28, 2019
1 parent 8e0051d commit 7101ae3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
## Changelog

# 1.0b2

* Reduce copies of data to downsize memory needs
* Updates tests
* Adds a learning variable for iterations to remove jumpiness
* Exit labeling loop if find a negative cost
* Re-implements Utility scaling for labeling to avoid negative costs
* Python 3 compliant and backward compatible to 2.6 using future
* Add compiler flags and adjust some code so that it works with modern CPP
* Update TRAVIS and add auto creation and deployment of documentation at end of successful tests
* Move majority of documentation to sphinx-based github site

# 1.0b1

* Test scenarios: new scenarios, re-organization, and notebooks to view
* Flexible preferred departure and arrival times with
* Ability to add functional forms to variables
* Add updateStopStatesForTrips

# Alpha
Major changes to fast-trips since the original FAST-TrIPs (https://github.com/MetropolitanTransportationCommission/FAST-TrIPs-1)

To be filled in further but including:
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
import sysconfig
import numpy

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

### Settings for Extension Building
#compile_args = sysconfig.get_config_var('CFLAGS').split()
Expand All @@ -23,11 +28,12 @@
)

setup(name = 'fasttrips',
version = '1.0b1',
version = '1.0b2',
author = 'MTC, SFCTA & PSRC',
author_email = '[email protected]',
description = 'Dynamic Transit Assignment Model. Given a transit network and a list of transit demand, finds a pathset and chooses a path for each traveler.',
long_description = 'See https://github.com/BayAreaMetro/fast-trips',
long_description_content_type='text/markdown',
long_description=long_description,
packages = ['fasttrips'],
url = 'http://fast-trips.mtc.ca.gov/',
license = 'Apache',
Expand Down

0 comments on commit 7101ae3

Please sign in to comment.