Skip to content

Commit

Permalink
Set minimum Py3 version to 3.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedarcy committed Apr 16, 2021
1 parent a7def15 commit 22ff5b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_readme_contents():
maintainer=author,
maintainer_email=author_email,
version=__version__,
python_requires='>3.5.2',
python_requires='>=3.6',
packages=find_packages(),
package_data={'deriva.qt': ['upload_gui/conf/config.json', '*/resources/images/*']},
entry_points={
Expand All @@ -62,9 +62,9 @@ def get_readme_contents():
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)

0 comments on commit 22ff5b3

Please sign in to comment.