File tree Expand file tree Collapse file tree 7 files changed +79
-4
lines changed Expand file tree Collapse file tree 7 files changed +79
-4
lines changed Original file line number Diff line number Diff line change
1
+ channels:
2
+ - michaelsjp
3
+
4
+ show_channel_urls: True
Original file line number Diff line number Diff line change 1
1
name : tests
2
2
3
- on : [push, pull_request]
3
+ on : [pull_request]
4
4
5
5
jobs :
6
6
build :
Original file line number Diff line number Diff line change
1
+ name : Conda Package
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' v*.*.*'
7
+
8
+ jobs :
9
+ publish :
10
+ runs-on : Ubuntu-20.04
11
+ steps :
12
+ - uses : actions/checkout@v1
13
+ - name : publish-to-conda
14
+ uses :
MichaelsJP/[email protected]
15
+ with :
16
+ subDir : ' conda.recipe'
17
+ AnacondaToken : ${{ secrets.ANACONDA_TOKEN }}
18
+ platforms : ' all'
19
+ override : true
Original file line number Diff line number Diff line change 14
14
:target: https://badge.fury.io/py/openrouteservice
15
15
:alt: PyPI version
16
16
17
- .. image :: https://anaconda.org/nilsnolde/openrouteservice/badges/installer/conda.svg
18
- :target: https://conda.anaconda.org/nilsnolde/openrouteservice
19
- :alt: Conda install
17
+ .. image :: https://github.com/GIScience/openrouteservice-py/workflows/Conda%20Package/badge.svg?branch=master
18
+ :target: https://anaconda.org/MichaelsJP/openrouteservice
19
+ :alt: Conda Build
20
+
21
+ .. image :: https://anaconda.org/michaelsjp/openrouteservice/badges/version.svg
22
+ :target: https://anaconda.org/MichaelsJP/openrouteservice
23
+ :alt: Conda Version
20
24
21
25
.. image :: https://mybinder.org/badge_logo.svg
22
26
:target: https://mybinder.org/v2/gh/GIScience/openrouteservice-py/master?filepath=examples%2Fbasic_example.ipynb
Original file line number Diff line number Diff line change
1
+ cd %RECIPE_DIR% \..
2
+ " %PYTHON% " setup.py install
3
+ if errorlevel 1 exit 1
Original file line number Diff line number Diff line change
1
+ cd $RECIPE_DIR /..
2
+ $PYTHON setup.py install
Original file line number Diff line number Diff line change
1
+ {% set name = "openrouteservice" %}
2
+ {% set version = "2.3.2" %}
3
+
4
+ package :
5
+ name : " {{ name|lower }}"
6
+ version : " {{ version }}"
7
+
8
+ source :
9
+ git_url : https://github.com/GIScience/openrouteservice-py.git
10
+ git_rev : " v{{ version }}"
11
+
12
+
13
+ requirements :
14
+ build :
15
+ - python>=3.4
16
+ - pip
17
+ - requests>=2.0
18
+ - nose>=1.0
19
+ - responses>=0.10
20
+ - coveralls>=1.7.0
21
+ - coverage>=4.5.0
22
+ run :
23
+ - requests>=2.0
24
+ test :
25
+ imports :
26
+ - openrouteservice
27
+ source_files :
28
+ - openrouteservice
29
+ - test
30
+ requires :
31
+ - nose>1.0
32
+ - requests>=2.0
33
+ - responses>=0.10
34
+ - coveralls>=1.7.0
35
+ - coverage>=4.5.0
36
+ commands :
37
+ - nosetests -v
38
+
39
+ about :
40
+ home : https://github.com/GIScience/openrouteservice-py
41
+ license : Apache
42
+ license_family : BSD
43
+ license_file : LICENSE
You can’t perform that action at this time.
0 commit comments