Skip to content

Commit 7e9511b

Browse files
committed
drop python 35 36
1 parent cd61108 commit 7e9511b

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

Diff for: .github/workflows/tests.yml

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ jobs:
2626
# - 3.13-dev
2727
- pypy-3.9
2828
include:
29-
- os: ubuntu-20.04
30-
python-version: '3.5'
31-
- os: ubuntu-20.04
32-
python-version: '3.6'
3329
- os: windows-2022
3430
python-version: '3.12'
3531
- os: macos-13

Diff for: pyproject.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
"Programming Language :: Python",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.5",
19-
"Programming Language :: Python :: 3.6",
2018
"Programming Language :: Python :: 3.7",
2119
"Programming Language :: Python :: 3.8",
2220
"Programming Language :: Python :: 3.9",
@@ -30,7 +28,6 @@ classifiers = [
3028
]
3129
dependencies = [
3230
"colorama>=0.3.4 ; sys_platform=='win32'",
33-
"aiocontextvars>=0.2.0 ; python_version<'3.7'",
3431
"win32-setctime>=1.0.0 ; sys_platform=='win32'"
3532
]
3633
description = "Python logging made (stupidly) simple"
@@ -52,7 +49,7 @@ dev = [
5249
"pytest==8.2.1 ; python_version>='3.8'",
5350
"pytest-cov==2.12.1 ; python_version<'3.8'",
5451
"pytest-cov==5.0.0 ; python_version>='3.8'",
55-
"pytest-mypy-plugins==1.9.3 ; python_version>='3.6' and python_version<'3.8'",
52+
"pytest-mypy-plugins==1.9.3 ; python_version<'3.8'",
5653
"pytest-mypy-plugins==3.1.0 ; python_version>='3.8'",
5754
# Testing utils.
5855
"colorama==0.4.5 ; python_version<'3.8'",
@@ -61,8 +58,7 @@ dev = [
6158
"freezegun==1.5.0 ; python_version>='3.8'",
6259
"exceptiongroup==1.1.3 ; python_version>='3.7' and python_version<'3.11'",
6360
# Type checking.
64-
"mypy==v0.910 ; python_version<'3.6'",
65-
"mypy==v0.971 ; python_version>='3.6' and python_version<'3.7'",
61+
"mypy==v0.971 ; python_version<'3.7'",
6662
"mypy==v1.4.1 ; python_version>='3.7' and python_version<'3.8'",
6763
"mypy==v1.10.0 ; python_version>='3.8'",
6864
# Docs.

0 commit comments

Comments
 (0)