Skip to content

Commit a5d1e72

Browse files
committed
correcting setup
1 parent 838bd58 commit a5d1e72

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

HISTORY.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@
33
History
44
-------
55

6+
v0.8.1 (2017-06-05)
7+
...................
8+
* uprev setup requires
9+
* correct setup arguments
10+
611
v0.8.0 (2017-06-05)
712
...................
8-
* add ``async-timeout`` dependency and use async timeout around ``shadow_factory``
13+
* add ``async-timeout`` dependency
14+
* use async-timeout around ``shadow_factory``
915
* change logger name for control process log messages
1016
* use ``Semaphore`` rather than ``asyncio.wait(...return_when=asyncio.FIRST_COMPLETED)`` for improved performance
1117
* improve log display

arq/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ['VERSION']
44

5-
VERSION = StrictVersion('0.8.0')
5+
VERSION = StrictVersion('0.8.1')

setup.py

+12-10
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,25 @@
1717
classifiers=[
1818
'Development Status :: 4 - Beta',
1919
'Environment :: Console',
20-
'Programming Language :: Python',
21-
'Programming Language :: Python :: 3',
22-
'Programming Language :: Python :: 3.6',
20+
'Framework :: AsyncIO',
2321
'Intended Audience :: Developers',
2422
'Intended Audience :: Information Technology',
2523
'Intended Audience :: System Administrators',
2624
'License :: OSI Approved :: MIT License',
2725
'Operating System :: Unix',
2826
'Operating System :: POSIX :: Linux',
29-
'Topic :: Software Development :: Libraries :: Python Modules',
27+
'Programming Language :: Python',
28+
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3 :: Only',
30+
'Programming Language :: Python :: 3.6',
3031
'Topic :: Internet',
32+
'Topic :: Software Development :: Libraries :: Python Modules',
3133
'Topic :: System :: Clustering',
3234
'Topic :: System :: Distributed Computing',
33-
'Topic :: System :: Systems Administration',
3435
'Topic :: System :: Monitoring',
35-
'Framework :: AsyncIO',
36+
'Topic :: System :: Systems Administration',
3637
],
38+
python_requires='>=3.6',
3739
author='Samuel Colvin',
3840
author_email='[email protected]',
3941
url='https://github.com/samuelcolvin/arq',
@@ -45,12 +47,12 @@
4547
arq=arq.cli:cli
4648
""",
4749
install_requires=[
48-
'async-timeout==1.1.0',
49-
'aioredis>=0.2.9',
50-
'click>=6.6',
50+
'async-timeout>=1.2.1',
51+
'aioredis>=0.3.1',
52+
'click>=6.7',
5153
'msgpack-python>=0.4.8',
5254
],
5355
extras_require={
54-
'testing': ['pytest>=3.0.5'],
56+
'testing': ['pytest>=3.1.0'],
5557
},
5658
)

0 commit comments

Comments
 (0)