Skip to content

Commit 1033867

Browse files
committed
chore: drop 3.6/3.7 python support
1 parent 3647a66 commit 1033867

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci-linux-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-20.04
1313
strategy:
1414
matrix:
15-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

docs/about/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Before you submit a pull request, check that it meets these guidelines:
105105

106106
1. The pull request should include tests.
107107
2. If the pull request adds/changes functionality, the docs should be updated.
108-
3. The pull request should work for Python 3.6-3.10. Check
108+
3. The pull request should work for Python 3.8-3.12. Check
109109
https://travis-ci.org/igordejanovic/parglare/pull_requests and make sure that
110110
the tests pass for all supported Python versions.
111111

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ classifiers = [
2222
"License :: OSI Approved :: MIT License",
2323
"Natural Language :: English",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.6",
26-
"Programming Language :: Python :: 3.7",
2725
"Programming Language :: Python :: 3.8",
2826
"Programming Language :: Python :: 3.9",
2927
"Programming Language :: Python :: 3.10",
@@ -32,7 +30,7 @@ classifiers = [
3230
"Operating System :: OS Independent",
3331
]
3432

35-
requires-python = ">=3.6, <3.13"
33+
requires-python = ">=3.8, <3.13"
3634
dependencies = [
3735
"click >=7.0, <9.0"
3836
]

0 commit comments

Comments
 (0)