forked from anitagraser/pgRoutingLayer
-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Travistest #122
Merged
Merged
Travistest #122
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
fda4121
[Build] resources.py is autogenerated with pb_tool
cvvergara 4ac254b
The directories are not containing packages
cvvergara 6628025
[Build] using a general path for plugin_path
cvvergara d9df63b
[Meta] updating metadata
cvvergara fcfd80c
[MEta] fixing metadata
cvvergara bc044d9
more on fixing metadata
cvvergara 7f698e6
setting the default schema to be default
cvvergara 3a647bd
[travis] adding requirements & travis file
cvvergara 8a1a763
[travis] adding a phony line to trigger travis
cvvergara 3d39c52
[travis] adding pyqt5
cvvergara ee9f836
[travis] adding pyqt5
cvvergara c531c31
[travis] testing deploy
cvvergara 91a7221
[travis] testing deploy auto yes
cvvergara 6171c55
[travis] removing phoney line to test cache
cvvergara c42eb8e
[lint] removing trailing spaces
cvvergara 95db3e6
[travis] using xenial
cvvergara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ------------------------------------------------------------------------------ | ||
# Travis CI scripts | ||
# Copyright(c) pgRouting Contributors | ||
# | ||
# Main configuration | ||
# ------------------------------------------------------------------------------ | ||
|
||
dist: trusty | ||
sudo: required | ||
|
||
|
||
language: python | ||
python: | ||
- "3.5-dev" # 3.5 development branch | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is better 3.6 |
||
|
||
addons: | ||
apt: | ||
packages: | ||
- pyqt5-dev-tools | ||
|
||
cache: | ||
directories: | ||
- $HOME/.cache/pip | ||
|
||
before_cache: | ||
- rm -f $HOME/.cache/pip/log/debug.log | ||
|
||
install: | ||
- pip install -r requirements.txt | ||
|
||
before_script: | ||
- mkdir build | ||
|
||
script: | ||
- pb_tool deploy -y -p build | ||
- mkdocs build | ||
|
Empty file.
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
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
Empty file.
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 |
---|---|---|
|
@@ -2,31 +2,26 @@ | |
name=pgRoutingLayer | ||
description=Dockable widget that adds pgRouting layers | ||
about=Dockable widget that adds pgRouting layers | ||
- pgr_astar pgr_astarCost | ||
- pgr_bdAstar pgr_astarCost | ||
- pgr_dijstra pgr_dijstraCost | ||
- pgr_bdDijstra pgr_bdDijstraCost | ||
- pgr_KSP | ||
version=3.0.0 | ||
qgisMinimumVersion=3.0 | ||
qgisMaximumVersion=3.99 | ||
author=Anita Graser, Ko Nagase, Vicky Vergara | ||
author=Anita Graser, Ko Nagase, Vicky Vergara, Cayetano Benavent, Aasheesh Tiwari | ||
[email protected] | ||
changelog=3.0.0 | ||
- Support for QGIS 3 (Python 3 and PyQt5). | ||
- Support for QGIS 3 (Python 3 and PyQt5). | ||
- Removed deprecated functions. | ||
- Support only for some functions that are known to be on pgRouting 3.0 | ||
2.2.2 | ||
- Bug fix: activating alphashape.py to use BBOX by mixedbredie | ||
2.2.1 | ||
- Bug fix activating plugin | ||
2.2.0 | ||
- Support for pgRouting V2.0 up to v2.5 | ||
- BBOX is optional | ||
2.1.0 | ||
- change support sites | ||
- port to pgRouting 2.1 API by pgRouting team | ||
- drop QGIS 1.8 support | ||
2.0.0 | ||
- port to 2.0 API by Ko Nagase | ||
- Last experimental release works only for QGIS 2.x | ||
tags=pgRouting,PostGIS,routing,network analysis | ||
icon=icon.png | ||
experimental=True | ||
homepage=https://github.com/pgRouting/pgRoutingLayer/wiki | ||
tracker=https://github.com/pgRouting/pgRoutingLayer | ||
experimental=False | ||
homepage=https://qgis.pgrouting.org/ | ||
tracker=https://github.com/pgRouting/pgRoutingLayer/issues | ||
repository=https://github.com/pgRouting/pgRoutingLayer | ||
category=Database |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
mkdocs | ||
pb_tool |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't use Trusty because is near of his EOL (April 2019). We should use Bionic Beaver.