Skip to content

Commit b7d4dba

Browse files
authored
Don't support python 3.8 (#142)
Signed-off-by: Yu Ishikawa <[email protected]>
1 parent bbe8f81 commit b7d4dba

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
35+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
3636
defaults:
3737
run:
3838
shell: bash

.github/workflows/test-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
strategy:
3636
matrix:
37-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
37+
python-version: ["3.9", "3.10", "3.11", "3.12" ]
3838
defaults:
3939
run:
4040
shell: bash

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2121
fail-fast: false
2222

2323
defaults:

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "dbt-artifacts-parser"
77
authors = [{name = "yu-iskw"}]
88
readme = "README.md"
99
license = {file = "LICENSE"}
10-
requires-python = ">=3.8.0"
10+
requires-python = ">=3.9.0"
1111
classifiers = [
1212
"Development Status :: 4 - Beta",
1313
"Intended Audience :: Information Technology",
@@ -19,7 +19,6 @@ classifiers = [
1919
"Programming Language :: Python",
2020
"Programming Language :: Python :: 3",
2121
"Programming Language :: Python :: 3 :: Only",
22-
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)