setup: add python_requires='>=3.5' (#723)

This commit is contained in:
lasers 2020-09-06 11:37:12 -05:00 committed by GitHub
parent d5082fab73
commit 259f423408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,5 @@
language: python language: python
sudo: false sudo: false
python:
- "3.6" - "3.6"
install: install:
- "pip install -r dev-requirements.txt" - "pip install -r dev-requirements.txt"

View File

@ -12,9 +12,12 @@ setup(name="i3pystatus",
"Environment :: X11 Applications", "Environment :: X11 Applications",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux", "Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Desktop Environment :: Window Managers", "Topic :: Desktop Environment :: Window Managers",
], ],
python_requires='>=3.5',
packages=find_packages(include=['i3pystatus', 'i3pystatus.*']), packages=find_packages(include=['i3pystatus', 'i3pystatus.*']),
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [