mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-02 07:36:51 -04:00
Merge pull request #3089 from ThomasWaldmann/py35-requirement
check for py 3.5 minimum requirement in setup.py
This commit is contained in:
commit
8cccd63df1
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
|
||||
|
||||
min_python = (3, 4)
|
||||
min_python = (3, 5)
|
||||
my_python = sys.version_info
|
||||
|
||||
if my_python < min_python:
|
||||
|
|
|
|||
Loading…
Reference in a new issue