Skip to content

Commit

Permalink
Merge branch 'cb-test-environment' of github.com:gis-ops/routing-py i…
Browse files Browse the repository at this point in the history
…nto cb-test-environment
  • Loading branch information
chrstnbwnkl committed Dec 6, 2022
2 parents 0e10090 + 3baad5c commit 73bf55c
Show file tree
Hide file tree
Showing 11 changed files with 820 additions and 253 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/ci-tests.yml
Expand Up @@ -18,16 +18,17 @@ jobs:
matrix:
python_version: [
3.7,
3.8,
3.9,
'3.10',
# 3.8, # only lowest & highest version should be enough, :cross_fingers:
# 3.9,
# '3.10',
'3.11'
# pypy3 # didn't build on CI anymore, happy for help: https://github.com/gis-ops/routing-py/issues/60
]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}

Expand All @@ -48,9 +49,3 @@ jobs:
docker-compose -f docker-compose.yml down
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage.lcov
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,9 +12,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added e2e tests using dockerized instances of Valhalla, OSRM, ORS and GraphHopper

### Fixed
- Unit conversion did not work properly in ors' directions method
- Docstring for `intersections` parameter in ors' isochrones method was missing
- `profile` parameter was unnecessarily passed to POST params in ors' isochrones and matrix methods
- Valhalla's Isochrones center property was unnecessarily wrapped in a list
- GraphHopper Isochrones center coordinates were strings, not floats


## [v1.1.0](https://pypi.org/project/routingpy/1.1.0/)

### Added
Expand Down
14 changes: 5 additions & 9 deletions README.rst
@@ -1,14 +1,10 @@
routing-py
routingpy
==========

.. image:: https://github.com/gis-ops/routing-py/workflows/tests/badge.svg
:target: https://github.com/gis-ops/routing-py/actions/workflows/ci-tests.yml
:alt: tests

.. image:: https://coveralls.io/repos/github/gis-ops/routing-py/badge.svg?branch=master
:target: https://coveralls.io/github/gis-ops/routing-py?branch=master
:alt: Coveralls coverage

.. image:: https://readthedocs.org/projects/routingpy/badge/?version=latest
:target: https://routingpy.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
Expand Down Expand Up @@ -38,15 +34,15 @@ or **time-distance matrices**.
This list is hopefully growing with time and contributions by other developers. An up-to-date list is always available
in our documentation_.

**routing-py** is tested against CPython versions 3.7, 3.8, 3.9, 3.10 ~~and against PyPy3~~ ([#60](https://github.com/gis-ops/routing-py/issues/60).
**routing-py** is tested against CPython versions 3.7, 3.8, 3.9, 3.10, 3.11 :strike:`and against PyPy3` (`#60 <https://github.com/gis-ops/routingpy/issues/60>`_).

© routing-py contributors 2022 under the `Apache 2.0 License`_.
© routingpy contributors 2022 under the `Apache 2.0 License`_.

.. image:: https://user-images.githubusercontent.com/10322094/57357720-e180c080-7173-11e9-97a4-cecb4670065d.jpg
:alt: routing-py-image


Why routing-py?
Why routingpy?
---------------

You want to
Expand Down Expand Up @@ -88,7 +84,7 @@ Or the lastest from source

.. code:: bash
pip install git+git://github.com/gis-ops/routing-py
pip install git+git://github.com/gis-ops/routingpy
API
Expand Down
6 changes: 1 addition & 5 deletions docs/conf.py
Expand Up @@ -30,11 +30,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
]
extensions = ["sphinx.ext.autodoc", "sphinx.ext.doctest", "sphinx.ext.intersphinx", "sphinxnotes.strike"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
Expand Down

0 comments on commit 73bf55c

Please sign in to comment.