Skip to content

Commit

Permalink
common: minimum python version 3.6 required.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelliavonau committed Dec 23, 2020
1 parent 42c970b commit 6014ce3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python
sudo: true
python:
- "3.5"
- "3.6"
- " 3.6"
- "3.7"
- "3.8"
- "3.9"

install:
- ./test/setup_test.sh
Expand Down
2 changes: 1 addition & 1 deletion readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
python:
version: 3.5
version: 3.6
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
python_version = sys.version_info
except Exception:
python_version = (1, 5)
if python_version < (3, 5):
if python_version < (3, 6):
sys.exit(
"This application requires a minimum of Python 3.5 !"
"This application requires a minimum of Python 3.6 !"
" Please update your Python version."
)

Expand Down Expand Up @@ -64,7 +64,7 @@
zip_safe=False,

packages=find_packages(),
python_requires='>=3.5',
python_requires='>=3.6',
include_package_data=True,

install_requires=install_requires,
Expand All @@ -79,10 +79,10 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'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 :: Build Tools',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Compilers',
Expand Down

0 comments on commit 6014ce3

Please sign in to comment.