Skip to content

Commit

Permalink
Fix python 3.6 dependencies
Browse files Browse the repository at this point in the history
`contextvars` in required for 3.6, only.
  • Loading branch information
jruere committed Oct 3, 2023
1 parent d996d53 commit ff7eb49
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -47,6 +48,7 @@
packages=find_packages(exclude=["tests*"]),
install_requires=[
"asttokens>=2,<3",
'contextvars;python_version=="3.6"',
"typing_extensions",
],
extras_require={
Expand Down

0 comments on commit ff7eb49

Please sign in to comment.