Skip to content

Commit

Permalink
Remove support for Python 3.7, add support for all versions up to and…
Browse files Browse the repository at this point in the history
… including Python 3.12 (#29)
  • Loading branch information
miketheman authored Aug 20, 2024
1 parent e75fa29 commit bba3933
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- macos-latest
- ubuntu-latest
- windows-latest
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Leverages `pytest` hooks to measure execution time of phases.

Requires:

- Python 3.7 or later.
- Python 3.8 or later.
- Pytest 6.2 or later.

Install the plugin with any approach for your project.
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]


[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"

[tool.poetry.dev-dependencies]
pytest = "^6.2"
Expand Down

0 comments on commit bba3933

Please sign in to comment.