Skip to content

Commit

Permalink
Drop support for Python 3.8 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Oct 30, 2024
1 parent d3fae47 commit 2d887d8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']

name: Python ${{ matrix.python-version}}
steps:
Expand Down
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======

2.2.00000000 (in development)
=============================

Bug fixes:

* Drop support for Python 3.8. (#137)


2.1.20240726 (July 26th, 2024)
==============================

Expand Down
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,14 @@ readme = "README.rst"
keywords = ["socorro"]
authors = [{name = "Will Kahn-Greene"}]
license = {text = "MPLv2"}
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"glom",
"importlib_resources; python_version < '3.9'",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -57,7 +55,7 @@ build-backend = "setuptools.build_meta"

[tool.ruff]
line-length = 88
target-version = "py38"
target-version = "py39"
src = ["setup.py", "siggen"]

[tool.ruff.lint]
Expand All @@ -74,7 +72,6 @@ legacy_tox_ini = """
[tox]
isolated_build = True
envlist =
py38
py39
py310
py311
Expand All @@ -84,7 +81,6 @@ envlist =
[gh-actions]
python =
3.8: py38
3.9: py39, py39-lint, py39-norequests
3.10: py310
3.11: py311
Expand All @@ -99,13 +95,13 @@ commands =
[testenv:py39-lint]
extras = dev,cli
allowlist_externals = ruff
commands =
ruff format --check siggen
ruff check siggen
[testenv:py39-norequests]
extras =
install_command = pip install {packages}
allowlist_externals = {toxinidir}/bin/run_cmd_tests.sh
commands =
{toxinidir}/bin/run_cmd_tests.sh --no-requests
Expand Down

0 comments on commit 2d887d8

Please sign in to comment.