kopia lustrzana https://github.com/Yakifo/amqtt
drop support for 3.4 and 3.5
rodzic
54c0eb8ec7
commit
fba07fcc35
|
@ -15,7 +15,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.4, 3.5, 3.6]
|
python-version: [3.6, 3.7]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
[bdist_wheel]
|
[bdist_wheel]
|
||||||
python-tag = py34.py35
|
python-tag = py36.py37
|
5
setup.py
5
setup.py
|
@ -8,7 +8,7 @@ from hbmqtt.version import get_version
|
||||||
setup(
|
setup(
|
||||||
name="hbmqtt",
|
name="hbmqtt",
|
||||||
version=get_version(),
|
version=get_version(),
|
||||||
description="MQTT client/broker using Python 3.4 asyncio library",
|
description="MQTT client/broker using Python asyncio",
|
||||||
author="Nicolas Jouanin",
|
author="Nicolas Jouanin",
|
||||||
author_email='nico@beerfactory.org',
|
author_email='nico@beerfactory.org',
|
||||||
url="https://github.com/beerfactory/hbmqtt",
|
url="https://github.com/beerfactory/hbmqtt",
|
||||||
|
@ -30,9 +30,8 @@ setup(
|
||||||
'Operating System :: POSIX',
|
'Operating System :: POSIX',
|
||||||
'Operating System :: MacOS',
|
'Operating System :: MacOS',
|
||||||
'Operating System :: Microsoft :: Windows',
|
'Operating System :: Microsoft :: Windows',
|
||||||
'Programming Language :: Python :: 3.4',
|
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
'Topic :: Internet'
|
'Topic :: Internet'
|
||||||
],
|
],
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -5,8 +5,6 @@ ignore =
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
py34,
|
|
||||||
py35,
|
|
||||||
py36,
|
py36,
|
||||||
py37,
|
py37,
|
||||||
coverage,
|
coverage,
|
||||||
|
|
Ładowanie…
Reference in New Issue