Skip to content

Commit 07e251a

Browse files
committed
Polishment
1 parent 3fd1ded commit 07e251a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

aiopg/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def cursor(self, name=None, cursor_factory=None,
258258
"""A coroutine that returns a new cursor object using the connection.
259259
260260
*cursor_factory* argument can be used to create non-standard
261-
cursors. The argument must be suclass of
261+
cursors. The argument must be subclass of
262262
`psycopg2.extensions.cursor`.
263263
264264
*name*, *scrollable* and *withhold* parameters are not supported by

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
PY_VER = sys.version_info
1010

1111
if PY_VER < (3, 4):
12-
raise RuntimeError("aiopg doesn't suppport Python earlier than 3.4")
12+
raise RuntimeError("aiopg doesn't support Python earlier than 3.4")
1313

1414

1515
def read(f):
1616
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
1717

18+
1819
extras_require = {'sa': ['sqlalchemy>=1.1'], }
1920

2021

@@ -29,12 +30,15 @@ def read_version():
2930
else:
3031
raise RuntimeError('Cannot find version in aiopg/__init__.py')
3132

33+
3234
classifiers = [
3335
'License :: OSI Approved :: BSD License',
3436
'Intended Audience :: Developers',
3537
'Programming Language :: Python :: 3',
3638
'Programming Language :: Python :: 3.4',
3739
'Programming Language :: Python :: 3.5',
40+
'Programming Language :: Python :: 3.6',
41+
'Programming Language :: Python :: 3.7',
3842
'Operating System :: POSIX',
3943
'Operating System :: MacOS :: MacOS X',
4044
'Operating System :: Microsoft :: Windows',
@@ -48,7 +52,7 @@ def read_version():
4852

4953
setup(name='aiopg',
5054
version=read_version(),
51-
description=('Postgres integration with asyncio.'),
55+
description='Postgres integration with asyncio.',
5256
long_description='\n\n'.join((read('README.rst'), read('CHANGES.txt'))),
5357
classifiers=classifiers,
5458
platforms=['POSIX'],

0 commit comments

Comments
 (0)