-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Models with no centroids (#472) * Bumps up version for release * Bumps up version for release * docs --------- Co-authored-by: pveigadecamargo <[email protected]> * Better network skimming and path computation headers and typo fix (#474) * Integration scaffolding * Transit assignment * Change "id" variable naming to avoid double underscores Double underscore variables are difficult to inherit without duplicating. I've tried my best to group all these renames into a single commit to be revertible but some others are deep within a refactor. This changes the convention of using `__id__` and `__graph_id__` to `_id` and `_graph_id`. Since these variables need to be accessible to other methods they are not private. The double underscore worked previously since there was only ever one class with these variables the name mangling was always correct. * Create GraphBase and TransitGraph classes * Create TransportClassBase and TransitClass classes * Create AssignmentBass and TransitAssignment classes * Create AssignmentResultsBase and AssignmentResultsTransit classes * Comments, add OptimalStrategies class * Incomplete (full) workflow * fixup! Incomplete (full) workflow * fixes export of omx matrices (#484) Co-authored-by: pveigadecamargo <[email protected]> * Move periods table * Lots of changes Limit graph loading and saving to a single graph for now Flush out results API, including saving and loading Move unrelated variables and methods * Add Periods and Period classes, similar to Nodes and Links classes * Remove period from database saving for now * Propagate period ids and various changes * Raise nicer errors * Style * removes use of necessary sqlite3 connection cursors and cached connections (#478) * removes use of necessary sqlite3 connection cursors * removes use of necessary sqlite3 connection cursors and saved connections * removes silly use of a cursor * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles * improves on connection styles --------- Co-authored-by: pveigadecamargo <[email protected]> * Migrate docs to new api, fix reloading graphs and begin updating tests. * Style and build errors * Typing * Revert changes to HyperpathGenerating and tests, use arrays instead * Exclude abstract methods from coverage tests * Period, Periods, TransitGraph, and TransitGraphBuilder tests * Style * Cleans graph creation (#482) Co-authored-by: pveigadecamargo <[email protected]> * Adds support page (#481) * updates examples * updates examples * Lower coverage requirement, typos * Remove patches * updates examples * fixup! Remove patches * Missing var * Deprecates Python 3.7 * Fixes documentation * Fixes documentation * code cleaning * code cleaning * code cleaning * updates setup classifiers * Fixes centroid assignment --------- Co-authored-by: Pedro Camargo <[email protected]> Co-authored-by: pveigadecamargo <[email protected]>
- Loading branch information
1 parent
0c853dc
commit e0a0b55
Showing
93 changed files
with
2,368 additions
and
1,173 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,6 @@ | ||
[report] | ||
fail_under = 81.0 | ||
fail_under = 75 | ||
show_missing = True | ||
exclude_lines = | ||
pragma: no cover | ||
@abstract |
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Build manylinux Python wheels | ||
uses: RalfG/[email protected] | ||
with: | ||
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312' | ||
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312' | ||
pip-wheel-args: '--no-deps' | ||
|
||
- name: Moves wheels | ||
|
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
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,5 +1,5 @@ | ||
version = 0.9 | ||
minor_version = "5" | ||
release_name = "Queluz" | ||
version = 1.0 | ||
minor_version = "0" | ||
release_name = "Rio de Janeiro" | ||
|
||
release_version = f"{version}.{minor_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
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
Oops, something went wrong.