Skip to content

Commit a864111

Browse files
committed
Drop support for Python 3.6
1 parent a6bc17f commit a864111

5 files changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/lint_and_test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,8 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix:
54-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11','pypy-3.8']
55-
os: [ubuntu-20.04, macos-latest, windows-latest]
56-
exclude:
57-
- os: windows-latest
58-
python-version: '3.6'
54+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11','pypy-3.8']
55+
os: [ubuntu-latest, macos-latest, windows-latest]
5956
timeout-minutes: 30
6057

6158
steps:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ Install from PPA (for Ubuntu)
368368

369369
Dependencies
370370
============
371-
- Python 3.6+
371+
- Python 3.7+
372372
- `Python package dependencies (automatically installed) <https://github.com/thombashi/SimpleSQLite/network/dependencies>`__
373373

374374
Optional Dependencies

docs/pages/introduction/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Install from PPA (for Ubuntu)
1717

1818
Dependencies
1919
============
20-
- Python 3.6+
20+
- Python 3.7+
2121
- `Python package dependencies (automatically installed) <https://github.com/thombashi/SimpleSQLite/network/dependencies>`__
2222

2323
Optional Dependencies

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exclude = '''
1919
)/
2020
| docs/conf.py
2121
'''
22-
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311']
22+
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
2323

2424
[tool.isort]
2525
known_third_party = [
@@ -66,7 +66,7 @@ exclude_lines = [
6666

6767
[tool.mypy]
6868
ignore_missing_imports = true
69-
python_version = 3.6
69+
python_version = 3.7
7070

7171
pretty = true
7272
show_error_codes = true

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_release_command_class() -> Dict[str, Type[setuptools.Command]]:
6060
"Tracker": f"{REPOSITORY_URL:s}/issues",
6161
"Changlog": f"{REPOSITORY_URL:s}/releases",
6262
},
63-
python_requires=">=3.6",
63+
python_requires=">=3.7",
6464
install_requires=install_requires,
6565
tests_require=tests_requires,
6666
extras_require={"logging": ["loguru>=0.4.1,<1"], "test": tests_requires},
@@ -72,7 +72,6 @@ def get_release_command_class() -> Dict[str, Type[setuptools.Command]]:
7272
"Operating System :: POSIX",
7373
"Operating System :: POSIX :: Linux",
7474
"Programming Language :: Python :: 3",
75-
"Programming Language :: Python :: 3.6",
7675
"Programming Language :: Python :: 3.7",
7776
"Programming Language :: Python :: 3.8",
7877
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)