diff --git a/setup.py b/setup.py index 2881b4e..8a580ad 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ from setuptools import setup, find_packages setup( name="hy_odoo", - version="0.7.0pre", + version="0.8.0pre", packages=find_packages(), package_data={ 'hy_odoo': ['*.hy'], }, - install_requires=["hy==0.17.Y"], + install_requires=["hy==0.24.*"], author="Fabien Bourgeois", author_email="fabien@yaltik.com", description="HY functions and macros for Odoo", @@ -17,8 +17,11 @@ setup( 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MPL2 License', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ] )