From 8b0d6db21a8fb027e30fdf81cbb4f58a89061938 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Wed, 19 May 2021 11:23:53 +0300 Subject: [PATCH] Bump version to 0.5.0 --- pysnooper/__init__.py | 2 +- setup.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pysnooper/__init__.py b/pysnooper/__init__.py index 5736634..4b6ea5b 100644 --- a/pysnooper/__init__.py +++ b/pysnooper/__init__.py @@ -24,7 +24,7 @@ import collections __VersionInfo = collections.namedtuple('VersionInfo', ('major', 'minor', 'micro')) -__version__ = '0.4.3' +__version__ = '0.5.0' __version_info__ = __VersionInfo(*(map(int, __version__.split('.')))) del collections, __VersionInfo # Avoid polluting the namespace diff --git a/setup.py b/setup.py index 7bdeafc..4c0bfc0 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,8 @@ setuptools.setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: OSI Approved :: MIT License',