Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit a78512e

Browse files
chore(release): bump to 3.1.13
1 parent 3766370 commit a78512e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

codecov/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
__license__ = "Apache 2.0"
66
__title__ = "codecov"
77
__url__ = "https://github.com/codecov/codecov-python"
8-
__version__ = "2.1.12"
8+
__version__ = "2.1.13"

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
from codecs import open
33
import os
44
from setuptools import setup
5+
from setuptools.command.install import install
6+
7+
class PostInstallCommand(install):
8+
def run(self):
9+
install.run(self)
10+
print("\n**** The codecov package has been deprecated and will be removed by the team in the future. Please update to use the uploader (https://docs.codecov.com/docs/codecov-uploader) to prevent any breakages in workflow. ****\n")
11+
512

613
classifiers = [
714
"Development Status :: 5 - Production/Stable",
@@ -45,4 +52,7 @@
4552
install_requires=["requests>=2.7.9", "coverage"],
4653
entry_points={"console_scripts": ["codecov=codecov:main"]},
4754
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
55+
cmdclass={
56+
'install': PostInstallCommand,
57+
},
4858
)

0 commit comments

Comments
 (0)