mirror of
https://github.com/sartography/SpiffWorkflow.git
synced 2025-08-02 00:59:41 +08:00
Fix for failures with Python 3.7 (#240)
* testing * Set dependency to fix python 3.7
This commit is contained in:
4
setup.py
4
setup.py
@ -21,7 +21,9 @@ setup(name='SpiffWorkflow',
|
||||
author_email='dan@sartography.com',
|
||||
license='lGPLv2',
|
||||
packages=find_packages(exclude=['tests', 'tests.*']),
|
||||
install_requires=['configparser', 'lxml', 'celery', 'dateparser', 'pytz'],
|
||||
install_requires=['configparser', 'lxml', 'celery', 'dateparser', 'pytz',
|
||||
# required for python 3.7 - https://stackoverflow.com/a/73932581
|
||||
'importlib-metadata<5.0'],
|
||||
keywords='spiff workflow bpmn engine',
|
||||
url='https://github.com/sartography/SpiffWorkflow',
|
||||
classifiers=[
|
||||
|
Reference in New Issue
Block a user