Skip to content

Commit

Permalink
chore: drop 3.6/3.7 python support
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Feb 9, 2024
1 parent 3647a66 commit 1033867
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/about/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Before you submit a pull request, check that it meets these guidelines:

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

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -32,7 +30,7 @@ classifiers = [
"Operating System :: OS Independent",
]

requires-python = ">=3.6, <3.13"
requires-python = ">=3.8, <3.13"
dependencies = [
"click >=7.0, <9.0"
]
Expand Down

0 comments on commit 1033867

Please sign in to comment.