67bc01af4f
This reverts commit 4a18ae10b8
.
Keeping Python 3.10 in setup.cfg classifier and testing py38 min and
py310 max version.
Reason for revert:
Needed-By: https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/882175
TC has been discussing about re-adding the python 3.8
testing in current master 2023.2 release testing.
- https://meetings.opendev.org/meetings/tc/2023/tc.2023-04-25-18.00.log.html#l-191
- https://lists.openstack.org/pipermail/openstack-discuss/2023-April/033469.html
While governance changes are under review, TC agreed to add py3.8 testing
so that we do not see more project/lib dropping python 3.8 and make them
uninstalable on python 3.8
- https://meetings.opendev.org/meetings/tc/2023/tc.2023-05-02-18.00.log.html#l-17
- https://review.opendev.org/c/openstack/governance/+/882165
Also adding py3.8 testing back in job https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/882175
Change-Id: I18508891947649aa0a696372f71877c87b5c387e
71 lines
2.0 KiB
INI
71 lines
2.0 KiB
INI
[metadata]
|
|
name = tooz
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
summary = Coordination library for distributed systems.
|
|
description_file = README.rst
|
|
license = Apache-2
|
|
home_page = https://docs.openstack.org/tooz/latest/
|
|
python_requires = >=3.8
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
Topic :: System :: Distributed Computing
|
|
|
|
[files]
|
|
packages =
|
|
tooz
|
|
|
|
[entry_points]
|
|
tooz.backends =
|
|
etcd = tooz.drivers.etcd:EtcdDriver
|
|
etcd3 = tooz.drivers.etcd3:Etcd3Driver
|
|
etcd3+http = tooz.drivers.etcd3gw:Etcd3Driver
|
|
etcd3+https = tooz.drivers.etcd3gw:Etcd3Driver
|
|
kazoo = tooz.drivers.zookeeper:KazooDriver
|
|
zake = tooz.drivers.zake:ZakeDriver
|
|
memcached = tooz.drivers.memcached:MemcachedDriver
|
|
ipc = tooz.drivers.ipc:IPCDriver
|
|
redis = tooz.drivers.redis:RedisDriver
|
|
postgresql = tooz.drivers.pgsql:PostgresDriver
|
|
mysql = tooz.drivers.mysql:MySQLDriver
|
|
file = tooz.drivers.file:FileDriver
|
|
zookeeper = tooz.drivers.zookeeper:KazooDriver
|
|
consul = tooz.drivers.consul:ConsulDriver
|
|
|
|
[extras]
|
|
consul =
|
|
python-consul2>=0.0.16 # MIT License
|
|
etcd =
|
|
requests>=2.10.0 # Apache-2.0
|
|
etcd3 =
|
|
etcd3>=0.12.0 # Apache-2.0
|
|
grpcio>=1.18.0
|
|
protobuf<4.0 # BSD License (3 clause)
|
|
etcd3gw =
|
|
etcd3gw!=0.2.6,>=0.1.0 # Apache-2.0
|
|
zake =
|
|
zake>=0.1.6 # Apache-2.0
|
|
redis =
|
|
redis>=3.1.0 # MIT
|
|
postgresql =
|
|
psycopg2>=2.5 # LGPL/ZPL
|
|
mysql =
|
|
PyMySQL>=0.6.2 # MIT License
|
|
zookeeper =
|
|
kazoo>=2.6 # Apache-2.0
|
|
memcached =
|
|
pymemcache!=1.3.0,>=1.2.9 # Apache 2.0 License
|
|
ipc =
|
|
sysv-ipc>=0.6.8 # BSD License
|