Skip to content

Commit

Permalink
⬆️ Increase minimum Python version to 3.9
Browse files Browse the repository at this point in the history
- Updated the minimum required Python version to 3.9 to resolve the 'type' object is not subscriptable error in tests.
- Ensured compatibility with Python features introduced in 3.9.
  • Loading branch information
loureirorg committed Sep 19, 2024
1 parent 3893e86 commit f3bd7ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11'] # Wrapped versions in quotes
python-version: ['3.9', '3.10', '3.11'] # Wrapped versions in quotes

name: Python ${{ matrix.python-version }} - ${{ matrix.os }}

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -32,7 +31,7 @@ keywords = [
"python-middleware",
]
dependencies = []
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
build = ["build", "twine"]
Expand Down

0 comments on commit f3bd7ea

Please sign in to comment.