diff --git a/.drone.yml b/.drone.yml index de6198c..aabab25 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: Python linting steps: - name: pylint - image: python:3.7-stretch + image: python:3.8-stretch commands: - pip install pylint - pip install -r requirements.txt diff --git a/setup.py b/setup.py index f0591f3..7099e5d 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,6 @@ license="MIT", classifiers=[ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" "Programming Language :: Python :: 3" ], @@ -20,5 +19,5 @@ project_urls={"Homepage": "https://git.tdem.in/tdemin/amber"}, packages=["project_amber"], install_requires=["flask", "flask-cors", "flask-sqlalchemy", "bcrypt"], - python_requires=">=3.6" + python_requires=">=3.8" )