Skip to content

Commit ffdd902

Browse files
committed
drop python 3.7 support.
1 parent bc8fb49 commit ffdd902

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

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

1616
strategy:
1717
matrix:
18-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
18+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Command Line utility for Provides aws cost very easy to see.
77

8-
Supports python 3.7 or later.
8+
Supports python 3.8 or later.
99

1010
## Install
1111

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[project]
22
name = "awscost"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
description = "Command Line utility for cost of aws."
55
authors = [{ name="Hiroshi Toyama", email="toyama0919@gmail.com" }]
66
readme = "README.md"
77
classifiers = [
8-
"Programming Language :: Python :: 3.7",
98
"Programming Language :: Python :: 3.8",
109
"Programming Language :: Python :: 3.9",
1110
"Programming Language :: Python :: 3.10",
1211
"Programming Language :: Python :: 3.11",
12+
"Programming Language :: Python :: 3.12",
1313
]
1414
keywords = [
1515
"awscost",
1616
"tool",
1717
"aws",
1818
]
19-
requires-python = ">=3.7"
19+
requires-python = ">=3.8"
2020
dependencies = [
2121
"tabulate",
2222
"boto3",

src/awscost/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import pkg_resources
1+
from importlib.metadata import version
22

3-
VERSION = pkg_resources.get_distribution("awscost").version
3+
VERSION = version("awscost")

0 commit comments

Comments
 (0)