Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.

Commit 498709f

Browse files
Drop support for python 3.6, which is EOL
1 parent b88cf6e commit 498709f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-20.04, windows-latest, macos-latest]
16-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
16+
python-version: [3.7, 3.8, 3.9, "3.10"]
1717

1818
steps:
1919
- name: Checkout repository

.python-version

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
3.6.15
21
3.7.14
32
3.8.14
43
3.9.13
5-
3.10.8
4+
3.10.8

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22

3+
### v0.16.0
4+
* Drop support for Python versions below 3.7
5+
36
### v0.15.3
47
* Comprehensive type hints implement by @thatfloflo in https://github.com/python-eel/Eel/pull/577.
58

README-developers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pip3 install -r requirements-meta.txt # tox
2929
```
3030

3131
### (Recommended) Run Automated Tests
32-
Tox is configured to run tests against each major version we support (3.6+). In order to run Tox as configured, you will need to install multiple versions of Python. See the pinned minor versions in `.python-version` for recommendations.
32+
Tox is configured to run tests against each major version we support (3.7+). In order to run Tox as configured, you will need to install multiple versions of Python. See the pinned minor versions in `.python-version` for recommendations.
3333

3434
#### Tox Setup
3535
Our Tox configuration requires [Chrome](https://www.google.com/chrome) and [ChromeDriver](https://chromedriver.chromium.org/home). See each of those respective project pages for more information on setting each up.
@@ -38,7 +38,7 @@ Our Tox configuration requires [Chrome](https://www.google.com/chrome) and [Chro
3838

3939
#### Running Tests
4040

41-
To test Eel against a specific version of Python you have installed, e.g. Python 3.6 in this case, run:
41+
To test Eel against a specific version of Python you have installed, e.g. Python 3.7 in this case, run:
4242

4343
```bash
4444
tox -e py36

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='Eel',
9-
version='0.15.3',
9+
version='0.16.0',
1010
author='Python Eel Organisation',
1111
author_email='[email protected]',
1212
url='https://github.com/python-eel/Eel',
@@ -18,7 +18,7 @@
1818
extras_require={
1919
"jinja2": ['jinja2>=2.10']
2020
},
21-
python_requires='>=3.6',
21+
python_requires='>=3.7',
2222
description='For little HTML GUI applications, with easy Python/JS interop',
2323
long_description=long_description,
2424
long_description_content_type='text/markdown',
@@ -30,7 +30,6 @@
3030
'Operating System :: POSIX',
3131
'Operating System :: Microsoft :: Windows :: Windows 10',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.6',
3433
'Programming Language :: Python :: 3.7',
3534
'Programming Language :: Python :: 3.8',
3635
'Programming Language :: Python :: Implementation :: CPython',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[tox]
2-
envlist = typecheck,py{36,37,38,39,310}
2+
envlist = typecheck,py{37,38,39,310}
33

44
[pytest]
55
timeout = 30
66

77
[gh-actions]
88
python =
9-
3.6: py36
109
3.7: py37
1110
3.8: py38
1211
3.9: py39

0 commit comments

Comments
 (0)