diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index deca2ab..b1651aa 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.4, 3.5, 3.6] + python-version: [3.6, 3.7] steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index bf807a7..b37836b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [bdist_wheel] -python-tag = py34.py35 \ No newline at end of file +python-tag = py36.py37 \ No newline at end of file diff --git a/setup.py b/setup.py index 3aa8294..d4d1fe6 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from hbmqtt.version import get_version setup( name="hbmqtt", version=get_version(), - description="MQTT client/broker using Python 3.4 asyncio library", + description="MQTT client/broker using Python asyncio", author="Nicolas Jouanin", author_email='nico@beerfactory.org', url="https://github.com/beerfactory/hbmqtt", @@ -30,9 +30,8 @@ setup( 'Operating System :: POSIX', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Communications', 'Topic :: Internet' ], diff --git a/tox.ini b/tox.ini index e959bf2..8652373 100644 --- a/tox.ini +++ b/tox.ini @@ -5,8 +5,6 @@ ignore = [tox] envlist = - py34, - py35, py36, py37, coverage,