Skip to content

Commit

Permalink
Merge pull request #253 from sartography/feature/avoid_importlib_for_…
Browse files Browse the repository at this point in the history
…python_3.8_up

do not install importlib-metadata if greater than python 3.7 w/ burnettk
  • Loading branch information
jasquat authored Oct 19, 2022
2 parents d9fcd45 + df31163 commit b9e3dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=['configparser', 'lxml', 'celery', 'dateparser', 'pytz',
# required for python 3.7 - https://stackoverflow.com/a/73932581
'importlib-metadata<5.0'],
'importlib-metadata<5.0; python_version <= "3.7"'],
keywords='spiff workflow bpmn engine',
url='https://github.com/sartography/SpiffWorkflow',
classifiers=[
Expand Down

0 comments on commit b9e3dd8

Please sign in to comment.