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

Commit

Permalink
chore(release): bump to 3.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Apr 17, 2023
1 parent 3766370 commit a78512e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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.12"
__version__ = "2.1.13"
10 changes: 10 additions & 0 deletions setup.py
Expand Up @@ -2,6 +2,13 @@
from codecs import open
import os
from setuptools import setup
from setuptools.command.install import install

class PostInstallCommand(install):
def run(self):
install.run(self)
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")


classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -45,4 +52,7 @@
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.*",
cmdclass={
'install': PostInstallCommand,
},
)

0 comments on commit a78512e

Please sign in to comment.