Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Update to 2.1.7 #279

Merged
merged 2 commits into from Jun 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### `2.1.7`

- [#279](https://github.com/codecov/codecov-python/pull/279) Fix pinned coverage version

### `2.1.6`

- [#275](https://github.com/codecov/codecov-python/pull/275) Fix GitHub Actions implementation
Expand Down
2 changes: 1 addition & 1 deletion codecov/__version__.py
Expand Up @@ -5,4 +5,4 @@
__license__ = "Apache 2.0"
__title__ = "codecov"
__url__ = "https://github.com/codecov/codecov-python"
__version__ = "2.1.6"
__version__ = "2.1.7"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,7 +40,7 @@
packages=["codecov"],
include_package_data=True,
zip_safe=True,
install_requires=["requests>=2.7.9", "coverage==4.5.4"],
install_requires=["requests>=2.7.9", "coverage"],
entry_points={"console_scripts": ["codecov=codecov:main"]},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
)