Remove version cap for mysql-connector-python

live demo now runs on python 3.9.2 and so whatever issue i ran across
previously, is no longer a thing i guess.

might as well not declare any particular python version beyond "3" ...

also cleanup the rattail dependencies a bit
This commit is contained in:
Lance Edgar 2022-11-26 20:32:45 -06:00
parent 16fdfd51ba
commit 5481c115ba

View file

@ -49,14 +49,9 @@ requires = [
# TODO: can remove this once tailbone requires it # TODO: can remove this once tailbone requires it
'pyramid_retry', # 1.0 'pyramid_retry', # 1.0
# TODO: remove cap for mysql-connector once we figure out what's up with that
'mysql-connector-python==8.0.17',
'invoke', # 0.22.1 'invoke', # 0.22.1
'psycopg2', # 2.6.2 'psycopg2', # 2.6.2
'rattail[db]', # 0.9.86 'rattail-tempmon', # 0.2.6
'rattail-corepos', # 0.1.0
'rattail-woocommerce', # 0.1.0
'Tailbone', # 0.5.49 'Tailbone', # 0.5.49
'tailbone-corepos', # 0.1.0 'tailbone-corepos', # 0.1.0
'tailbone-woocommerce', # 0.1.0 'tailbone-woocommerce', # 0.1.0
@ -80,7 +75,6 @@ setup(
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Office/Business', 'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],