Skip to content

Commit 966c705

Browse files
authored
chore: drop support for python 3.9 and 3.10 (#237)
1 parent 743856e commit 966c705

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build_docs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Build the docs here, to show errors.
2-
# The actual deployment of docs is configured in ReadTheDocs.org.
1+
# Build the docs here, to show errors.
2+
# The actual deployment of docs is configured in ReadTheDocs.org.
33

4-
name: Build and deploy docs
4+
name: Build and deploy docs
55

66
on:
77
pull_request:
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
python-version: ["3.10"]
18+
python-version: ["3.11"]
1919
os: [ubuntu-latest]
2020

2121
steps:

.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.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.11", "3.12"]
1818
os: [ubuntu-latest, windows-latest, macos-13]
1919
permissions:
2020
contents: read

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.9"
18+
requires-python = ">=3.11"
1919
dynamic = ["version"]
2020
dependencies = [
2121
"msal>=1.20.0",

0 commit comments

Comments
 (0)