Skip to content

Commit 55c6e68

Browse files
committed
bump
1 parent 64ca1bf commit 55c6e68

File tree

2 files changed

+2
-17
lines changed

2 files changed

+2
-17
lines changed

fancylog/__init__.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
1-
__version__ = "0.0.6"
1+
__version__ = "0.0.7"
22
__author__ = "Adam Tyson"
33
__license__ = "GPL-3.0"
44
__name__ = "fancylog"
55

66
from . import *
7-
8-
import luddite
9-
from packaging import version
10-
11-
most_recent_version = luddite.get_version_pypi(__name__)
12-
13-
if version.parse(__version__) < version.parse(most_recent_version):
14-
print(
15-
f"This version of {__name__} ({__version__}) is not the most recent "
16-
f"version. Please update to v{most_recent_version} by running: "
17-
f"'pip install {__name__} --upgrade'"
18-
)

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
from setuptools import setup, find_packages
22

3-
requirements = ["luddite"]
4-
53

64
setup(
75
name="fancylog",
8-
version="0.0.6",
6+
version="0.0.7",
97
description="Fancier logging in Python",
10-
install_requires=requirements,
118
extras_require={"dev": ["black", "pytest-cov", "pytest", "coveralls"]},
129
python_requires=">=3.6",
1310
packages=find_packages(),

0 commit comments

Comments
 (0)