Skip to content

Commit

Permalink
Remove support for Python 3.6 (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare committed Jan 17, 2022
1 parent b13e5e4 commit 2bbb786
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version:
- "3.7"
- "3.8"
- "3.9"

steps:
- uses: actions/checkout@v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ elFinder is an open-source file manager for web, written in JavaScript using jQu

## Installation

Python 3.6+ is required.
Python 3.7+ is required.

```sh
pip install -U imjoy-elfinder
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
python_requires=">=3.6",
python_requires=">=3.7",
install_requires=REQUIRES,
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand All @@ -49,7 +49,6 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist = py36, py37, py38, py39, lint, mypy
envlist = py37, py38, py39, lint, mypy
skip_missing_interpreters = True

[gh-actions]
python =
3.6: py36, lint, mypy
3.7: py37
3.7: py37, lint, mypy
3.8: py38
3.9: py39

Expand Down

0 comments on commit 2bbb786

Please sign in to comment.