From 57fc12d6475ef7237f6dd1605654df93577c865f Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Mon, 23 Jan 2023 13:14:58 -0500 Subject: [PATCH 1/5] remove install python3.7 in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4bba052300..cc3c30e7f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machi RUN apt update && apt upgrade -y # Install bittensor ## Install dependencies -RUN apt install -y curl sudo nano git htop netcat wget unzip python3-dev python3-pip tmux apt-utils cmake build-essential +RUN apt install -y curl sudo nano git htop netcat wget unzip tmux apt-utils cmake build-essential ## Upgrade pip RUN pip3 install --upgrade pip From c3dd7faad1bd2bc1588b5c1f7dc37412e18a6d61 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Mon, 23 Jan 2023 13:15:05 -0500 Subject: [PATCH 2/5] up req to 3.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 85d213c93e..3acb7fd403 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def read_requirements(path): include_package_data=True, author_email='', license='MIT', - python_requires='>=3.7', + python_requires='>=3.8', install_requires=requirements, extras_require={ 'dev': extra_requirements_dev, From c033ca19dbf8e595ec4a9dbeac5c270c565ae410 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Mon, 23 Jan 2023 13:36:27 -0500 Subject: [PATCH 3/5] remove from circleci --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c908e315f5..19b4b83235 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -129,7 +129,7 @@ workflows: - build-and-test: matrix: parameters: - python-version: ["3.7.14", "3.8.14", "3.9.13", "3.10.6"] + python-version: ["3.8.14", "3.9.13", "3.10.6"] - unit-tests-all-python-versions: requires: - build-and-test From 7b8e8842a616cb4142926478c6ec7e9b72bc6ce2 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Mon, 23 Jan 2023 14:10:07 -0500 Subject: [PATCH 4/5] fix tag in setup --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 3acb7fd403..f10b2a40dd 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,6 @@ def read_requirements(path): # Pick your license as you wish 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', From ebe2a91555cd23954f9fd68680c36a46f06a870d Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Mon, 23 Jan 2023 14:16:35 -0500 Subject: [PATCH 5/5] add py3 only tag --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f10b2a40dd..1ffdfb04ae 100644 --- a/setup.py +++ b/setup.py @@ -73,6 +73,7 @@ def read_requirements(path): # Pick your license as you wish 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10',