Skip to content

Commit 3e77a8d

Browse files
authored
Merge pull request #134 from mapbox/banish-bash
Banish bash
2 parents 1364d5a + 0e1a2dc commit 3e77a8d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ script:
99
- pre-commit run --all-files
1010
- pytest --cov --cov-config=.coveragerc
1111
after_script:
12-
- echo "uploading to codecov"
13-
- curl -S -f https://codecov.io/bash -o codecov
14-
- chmod +x codecov
15-
- ./codecov -Z
12+
- python -m codecov
1613
deploy:
1714
provider: pypi
1815
user: __token__

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Unreleased
22

3+
=======
4+
5+
# 1.7.1 (2021-04-16)
6+
- Switch to codecov python module
7+
38
# 1.7.0 (2021-04-02)
49
- Update `tilesets publish` success message to include link to studio.mapbox.com/tilesets/* endpoint and include `tilesets job` command to view the status.
510

mapbox_tilesets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""mapbox_tilesets package"""
22

3-
__version__ = "1.7.0"
3+
__version__ = "1.7.1"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def read(fname):
4141
zip_safe=False,
4242
extras_require={
4343
"test": [
44+
"codecov",
4445
"pytest==4.6.11",
4546
"pytest-cov",
4647
"pre-commit",

0 commit comments

Comments
 (0)