Skip to content

Commit 9f3adb4

Browse files
committed
Adjust version
1 parent 5b2bba1 commit 9f3adb4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

readchar/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
from .readchar import readchar, readkey
21
from . import key
2+
from .readchar import readchar, readkey
33

44
__all__ = [readchar, readkey, key]
5-
6-
__version__ = '2.0.1'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import find_packages, setup
77
from setuptools.command.test import test as TestCommand
88

9-
from readchar import __version__
9+
version = "2.0.1"
1010

1111

1212
def read_description():
@@ -39,7 +39,7 @@ def run_tests(self):
3939

4040
setup(
4141
name="readchar",
42-
version=__version__,
42+
version=version,
4343
description="Utilities to read single characters and key-strokes",
4444
long_description=read_description(),
4545
classifiers=[

0 commit comments

Comments
 (0)