Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit d7933af

Browse files
Sergey Kozlovfacebook-github-bot
authored andcommitted
Version 0.5 (#50)
Summary: Pull Request resolved: #50 - Bump minimally supported minor version - Add classifiers to reflect all the supported versions Reviewed By: pallotron Differential Revision: D29556275 fbshipit-source-id: 7fc59506ca513a90e4fa7d4027f5f498aca3d49a
1 parent 65fd535 commit d7933af

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ifndef PYTHON3
77
endif
88
endif
99
PYTHON_MAJOR_AT_LEAST=3
10-
PYTHON_MINOR_AT_LEAST=3
10+
PYTHON_MINOR_AT_LEAST=4
1111
PYTHON_VERSION := $(shell $(PYTHON) -c 'from __future__ import print_function; import platform; print(platform.python_version())')
1212
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)')
1313

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run_tests(self):
2929

3030
setup(
3131
name="fbtftp",
32-
version="0.4",
32+
version="0.5",
3333
description="A python3 framework to build dynamic TFTP servers",
3434
long_description=long_description,
3535
long_description_content_type="text/markdown",
@@ -42,6 +42,10 @@ def run_tests(self):
4242
"Operating System :: POSIX :: Linux",
4343
"Programming Language :: Python :: 3 :: Only",
4444
"Programming Language :: Python :: 3.5",
45+
"Programming Language :: Python :: 3.6",
46+
"Programming Language :: Python :: 3.7",
47+
"Programming Language :: Python :: 3.8",
48+
"Programming Language :: Python :: 3.9",
4549
"Topic :: Software Development :: Libraries :: Application Frameworks",
4650
"Topic :: System :: Boot",
4751
"Topic :: Utilities",

0 commit comments

Comments
 (0)