From 5153a0e27d9e00a9fbdbbcb7edabfe8bec6690ac Mon Sep 17 00:00:00 2001 From: Ved Patwardhan <54766411+vedpatwardhan@users.noreply.github.com> Date: Wed, 11 Oct 2023 22:25:49 +0530 Subject: [PATCH] fix: required changes for release regarding the python version to build python 3.10 specific wheels (#26912) --- MANIFEST.in | 2 ++ setup.py | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7ac5320132b47..e0a363d10c6ec 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,3 +2,5 @@ include requirements/requirements.txt include ivy/compiler/utils/*.so include ivy/compiler/*.so include ivy/compiler/*.py +include binaries.json +include available_configs.json diff --git a/setup.py b/setup.py index fcace197db60b..e76fd63202ce7 100644 --- a/setup.py +++ b/setup.py @@ -125,10 +125,6 @@ def _strip(line): python_requires=">=3.8,<=3.11", classifiers=[ "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", ], license="Apache 2.0", )