Skip to content

Commit

Permalink
fix(python): fix 'install_requires' to include semver (#1927)
Browse files Browse the repository at this point in the history
  • Loading branch information
maretodoric committed May 29, 2023
1 parent adc5425 commit ce86ece
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/setup.py
Expand Up @@ -20,9 +20,11 @@
license='MIT',
packages=['bullmq'],
package_data={'bullmq': ['commands/*.lua', 'types/*']},
install_requires=['redis',
'msgpack',
],
install_requires=[
'redis',
'msgpack',
'semver',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit ce86ece

Please sign in to comment.