Skip to content

Commit

Permalink
upgrade deps to work with python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenovax authored Jun 23, 2024
1 parent 4d0addf commit 5578757
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
# TODO: Add team email
author_email='',
install_requires=[
'numpy>=1.12',
'future==0.16.0',
'lxml==4.1.1',
'pymavlink==2.2.8',
'numpy>=1.21',
'future==0.18.2',
'lxml==4.9.2',
'pymavlink==2.4.41',
'utm==0.4',
'websockets==4.0.1',
'websockets>=10.0',
'cflib>=0.1.6',
] + (['uvloop==0.9.1'] if platform.system() is not 'Windows' else []),
] + (['uvloop==0.17.0'] if platform.system() is not 'Windows' else []),
tests_require=['flake8', 'pytest'],
keywords='drone api udacity flying car quadrotor',
license='MIT License',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.10',
],
# yapf
)

0 comments on commit 5578757

Please sign in to comment.