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

Commit

Permalink
Version 0.5 (#50)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Sergey Kozlov authored and facebook-github-bot committed Jul 6, 2021
1 parent 65fd535 commit d7933af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)')

Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit d7933af

Please sign in to comment.