python 3.7+

This commit is contained in:
Michael Pilosov 2023-03-19 20:03:22 -06:00
parent 91621847e5
commit 91b40234cb
3 changed files with 6 additions and 4 deletions

View File

@ -10,4 +10,7 @@ pub: build
install: install:
pip install -e .[dev,pub] pip install -e .[dev,pub]
.PHONY: build clean pub install test-api:
docker run --rm -ti -p 4999:4999 python:3.7-slim bash -c "pip install announce_server==0.0.2rc2; pip install 'python-socketsio[asyncio_client]==5.0'; announce_server start_registry"
.PHONY: build clean pub install test-api

View File

@ -12,7 +12,6 @@ classifiers =
Intended Audience :: Developers Intended Audience :: Developers
License :: OSI Approved :: MIT License License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.9
@ -24,7 +23,7 @@ package_dir =
= src = src
packages = find: packages = find:
install_requires = install_requires =
python-socketio[asyncio_client] python-socketio[asyncio_client]~=5.0.0
[options.packages.find] [options.packages.find]
where = src where = src

View File

@ -7,5 +7,5 @@ setup(
"setuptools_scm", "setuptools_scm",
], ],
use_scm_version=True, use_scm_version=True,
python_requires=">=3.6", python_requires=">=3.7", # because of python-socketsio[asyncio_client]
) )