Skip to content

Commit

Permalink
Merge branch 'develop': v 1.2.5. Freeze attrs requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
mahenzon committed Oct 4, 2019
2 parents 04fa69e + f2776b7 commit 4aa9603
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,5 @@ venv.bak/
# mypy
.mypy_cache/
Pipfile*

.idea/
2 changes: 1 addition & 1 deletion aioalice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())


__version__ = '1.2.4'
__version__ = '1.2.5'
4 changes: 4 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-r requirements.txt

wheel>=0.33.4
twine>=1.13.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
aiohttp>=3.3.2
attrs>=18.1.0
attrs==18.1.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if sys.version_info < MINIMAL_PY_VERSION:
raise RuntimeError('aioAlice works only with Python {}+'.format('.'.join(map(str, MINIMAL_PY_VERSION))))

__version__ = '1.2.4'
__version__ = '1.2.5'


def get_description():
Expand Down Expand Up @@ -50,7 +50,7 @@ def get_requirements(filename=None):
name='aioAlice',
version=__version__,
packages=find_packages(exclude=('tests', 'tests.*', 'examples',)),
url='https://github.com/surik00/aioalice',
url='https://github.com/mahenzon/aioalice',
license='MIT',
author='Suren Khorenyan',
requires_python='>=3.6',
Expand Down

0 comments on commit 4aa9603

Please sign in to comment.