Skip to content

Commit 4d2ec05

Browse files
authored
Keep supporting Python 3.7 (#12)
1 parent d045b90 commit 4d2ec05

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
PIP_DISABLE_PIP_VERSION_CHECK: 1
1414
strategy:
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.7", "3.9", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v3
@@ -40,6 +40,7 @@ jobs:
4040
run: "python -m build ."
4141

4242
- name: Upload distribution
43+
if: matrix.python-version == '3.11'
4344
uses: actions/upload-artifact@v3
4445
with:
4546
name: myloginpath-dist

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.4rc1"
44
description="MySQL login path file reader"
55

66
readme = "README.md"
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.7"
88
authors = [
99
{name = "Inada Naoki", email = "songofacandy@gmail.com"}
1010
]
@@ -17,6 +17,7 @@ classifiers = [
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.7",
2021
"Programming Language :: Python :: 3.8",
2122
"Programming Language :: Python :: 3.9",
2223
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)