Skip to content

Commit

Permalink
Drop support for Python 3.8 (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
equinor-ruaj authored Dec 10, 2024
1 parent 66a9f9b commit dd1ba35
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
permissions:
contents: read
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ line-length = 79

[project]
name = "fmu-sumo-uploader"
requires-python = ">=3.8"
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"sumo-wrapper-python>=1.0.3",
"azure.storage.blob",
"fmu-dataio",
"httpx>=0.24.1",
"OpenVDS; sys_platform != 'darwin' and python_version < '3.12'",
"ert; sys_platform != 'win32'",
"sumo-wrapper-python>=1.0.3",
"azure.storage.blob",
"fmu-dataio",
"httpx>=0.24.1",
"OpenVDS; sys_platform != 'darwin' and python_version < '3.12'",
"ert; sys_platform != 'win32'",
]

[project.optional-dependencies]
Expand Down

0 comments on commit dd1ba35

Please sign in to comment.