From d7933af99be2387da600d81209ae9ebfb8172b18 Mon Sep 17 00:00:00 2001 From: Sergey Kozlov Date: Tue, 6 Jul 2021 08:19:38 -0700 Subject: [PATCH] Version 0.5 (#50) Summary: Pull Request resolved: https://github.com/facebook/fbtftp/pull/50 - Bump minimally supported minor version - Add classifiers to reflect all the supported versions Reviewed By: pallotron Differential Revision: D29556275 fbshipit-source-id: 7fc59506ca513a90e4fa7d4027f5f498aca3d49a --- Makefile | 2 +- setup.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 432c6fa..360080c 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ ifndef PYTHON3 endif endif PYTHON_MAJOR_AT_LEAST=3 -PYTHON_MINOR_AT_LEAST=3 +PYTHON_MINOR_AT_LEAST=4 PYTHON_VERSION := $(shell $(PYTHON) -c 'from __future__ import print_function; import platform; print(platform.python_version())') CHECK_PYTHON_VERSION=$(shell $(PYTHON) -c 'from __future__ import print_function; import sys; print(0) if sys.version_info[:2] < ($(PYTHON_MAJOR_AT_LEAST), $(PYTHON_MINOR_AT_LEAST)) else print(1)') diff --git a/setup.py b/setup.py index 0b71642..3621606 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def run_tests(self): setup( name="fbtftp", - version="0.4", + version="0.5", description="A python3 framework to build dynamic TFTP servers", long_description=long_description, long_description_content_type="text/markdown", @@ -42,6 +42,10 @@ def run_tests(self): "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: System :: Boot", "Topic :: Utilities",