This repository was archived by the owner on Nov 9, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ifndef PYTHON3
77 endif
88endif
99PYTHON_MAJOR_AT_LEAST =3
10- PYTHON_MINOR_AT_LEAST =3
10+ PYTHON_MINOR_AT_LEAST =4
1111PYTHON_VERSION := $(shell $(PYTHON ) -c 'from __future__ import print_function; import platform; print(platform.python_version() )')
1212CHECK_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
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def run_tests(self):
2929
3030setup (
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" ,
You can’t perform that action at this time.
0 commit comments