mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-15 00:21:56 +00:00
check for py 3.5 minimum requirement in setup.py
we do not test on 3.4 any more and have dropped support for it. so we better enforce it in setup.py also.
This commit is contained in:
parent
21601d5f53
commit
be9fb349de
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ from distutils.core import Command
|
||||||
|
|
||||||
import textwrap
|
import textwrap
|
||||||
|
|
||||||
min_python = (3, 4)
|
min_python = (3, 5)
|
||||||
my_python = sys.version_info
|
my_python = sys.version_info
|
||||||
|
|
||||||
if my_python < min_python:
|
if my_python < min_python:
|
||||||
|
|
Loading…
Add table
Reference in a new issue