Skip to content

Commit c541d6d

Browse files
setup: clarify Python versions
We run tests with Python 3.6 and newer. Python 3.5 has reached its end of life two years ago [1]. Our code already doesn't work on Python 3.5 [2]. 1. https://endoflife.date/python 2. https://github.com/tarantool/tarantool-python/actions/runs/3243224481/jobs/5317632662 Part of #232
1 parent 8024a1d commit c541d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ def find_version(*file_paths):
9292
cmdclass=cmdclass,
9393
command_options=command_options,
9494
install_requires=get_dependencies('requirements.txt'),
95-
python_requires='>=3',
95+
python_requires='>=3.6',
9696
)

0 commit comments

Comments
 (0)