Skip to content

Commit c6a3919

Browse files
Drop support for Python 3.7
Argus does not support older Python versions than 3.8
1 parent e6e06ed commit c6a3919

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/tox.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## Unreleased
9+
10+
- Dropped support for Python 3.7 since Argus only supports Python >=3.8
11+
812
## [0.5.0] - 2024-09-13
913

1014
### Added

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ version = "0.5.0"
44
description = "A Python API client library for the Argus alert aggregator server"
55
readme = "README.md"
66
authors = [{name="Sikt - Kunnskapssektorens Tjenesteleverandør", email="[email protected]"}]
7-
requires-python = ">=3.7"
7+
requires-python = ">=3.8"
88
license = {file = "LICENSE"}
99
classifiers = [
1010
"License :: OSI Approved :: Apache Software License",
1111
"Programming Language :: Python :: 3",
12-
"Programming Language :: Python :: 3.7",
1312
"Programming Language :: Python :: 3.8",
1413
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
2-
envlist = py{37,38,39,310,311}
2+
envlist = py{38,39,310,311}
33
basepython = python3.9
44
skipsdist = True
55

66
[gh-actions]
77
python =
8-
3.7: py37
98
3.8: py38
109
3.9: py39
1110
3.10: py310

0 commit comments

Comments
 (0)