Skip to content

Commit

Permalink
Bump version to 0.0.12 and update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
italorossi committed Jan 10, 2022
1 parent 2c62746 commit 8d9ee82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install -r requirements.txt
- pip install -r test_requirements.txt
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='greenswitch',
version='0.0.11',
version='0.0.12',
description=u'Battle proven FreeSWITCH Event Socket Protocol client implementation with Gevent.',
long_description=readme,
author=u'Ítalo Rossi',
Expand All @@ -28,9 +28,11 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=requires
)
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[tox]
envlist = py27,py33,py34,py35,py36,py37
envlist = py27,py36,py37,py38,py39
[testenv]
deps= -rrequirements.txt -rtest_requirements.txt
deps=
-rrequirements.txt
-rtest_requirements.txt
commands= pytest --spec -s tests/

0 comments on commit 8d9ee82

Please sign in to comment.