Skip to content

Commit 2800923

Browse files
authored
chore: Drop support for Python 3.8 (#224)
1 parent bb18c16 commit 2800923

3 files changed

Lines changed: 5 additions & 15 deletions

File tree

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: "3.8"
20+
python-version: "3.11"
2121

2222
- name: build
2323
run: |

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1818
os: [ubuntu-latest, windows-latest, macos-13]
1919
permissions:
2020
contents: read

pyproject.toml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Programming Language :: Python",
1616
]
1717
authors = [{ name = "Equinor" }]
18-
requires-python = ">=3.8"
18+
requires-python = ">=3.9"
1919
dynamic = ["version"]
2020
dependencies = [
2121
"msal>=1.20.0",
@@ -47,21 +47,12 @@ sumo_login = "sumo.wrapper.login:main"
4747
where = ["src"]
4848

4949
[tool.ruff]
50-
exclude = [
51-
".env",
52-
".git",
53-
".github",
54-
".venv",
55-
"venv",
56-
]
50+
exclude = [".env", ".git", ".github", ".venv", "venv"]
5751

5852
line-length = 79
5953

6054
[tool.ruff.lint]
61-
ignore = [
62-
"E501",
63-
"N802",
64-
]
55+
ignore = ["E501", "N802"]
6556

6657
extend-select = [
6758
"C4", # Flake8-comprehensions
@@ -74,4 +65,3 @@ extend-select = [
7465

7566
[tool.ruff.lint.per-file-ignores]
7667
"__init__.py" = ["F401"]
77-

0 commit comments

Comments
 (0)