Skip to content

Commit

Permalink
Require Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Nov 20, 2023
1 parent 3cafa50 commit b318d4d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# We don't test on Windows currently as it appears mocket may not
# work there.
platform: [ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]

name: Python ${{ matrix.python-version }} on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
History
-------

2.9.0
++++++++++++++++++

* IMPORTANT: Python 3.8 or greater is required. If you are using an older
version, please use an earlier release.

2.8.0 (2023-05-09)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ For asynchronous reporting:
Requirements
------------

Python 3.7 or greater is required. Older versions are not supported.
Python 3.8 or greater is required. Older versions are not supported.

Versioning
----------
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"requests>=2.24.0,<3.0.0",
"voluptuous",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
readme = "README.rst"
license = {text = "Apache License 2.0"}
classifiers = [
Expand All @@ -23,7 +23,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
max-line-length = 88

[tox:tox]
envlist = {py37,py38,py39,py310,py311,py312}-test,py312-{black,lint,flake8,mypy}
envlist = {py38,py39,py310,py311,py312}-test,py312-{black,lint,flake8,mypy}

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312,black,lint,flake8,mypy

[testenv:{py37,py38,py39,py310,py311,py312}-test]
[testenv:{py38,py39,py310,py311,py312}-test]
deps =
mocket
pytest
Expand Down

0 comments on commit b318d4d

Please sign in to comment.