Skip to content

Commit

Permalink
Conan declares python 3.7 as minimum with nice failure for python2 (#…
Browse files Browse the repository at this point in the history
…11360)

* Python 3 with nice failure for python2

* Update setup.py

Co-authored-by: James <[email protected]>

Co-authored-by: James <[email protected]>
  • Loading branch information
lasote and memsharded authored May 30, 2022
1 parent b9105af commit 2cd2560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ def load_version():

def generate_long_description_file():
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
with open(path.join(this_directory, 'README.rst')) as f:
long_description = f.read()
return long_description


setup(
name='conan',
python_requires='>=3.6',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
Expand Down

0 comments on commit 2cd2560

Please sign in to comment.