From 790be7a4a8ff3137ebd96fc4951d6e66c035123a Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sun, 21 May 2023 19:06:07 +0900 Subject: [PATCH 1/2] CI: Support Python 3.7 too --- .github/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index fefaa2c..fad6856 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: PIP_DISABLE_PIP_VERSION_CHECK: 1 strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.9", "3.11"] steps: - uses: actions/checkout@v3 @@ -40,6 +40,7 @@ jobs: run: "python -m build ." - name: Upload distribution + if: matrix.python-version == '3.11' uses: actions/upload-artifact@v3 with: name: myloginpath-dist From 1dc4b17d16a3cce713044a6906d5660196cf25d7 Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Sun, 21 May 2023 19:06:43 +0900 Subject: [PATCH 2/2] Support Python 3.7 in pyproject.toml --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a92f7b2..196bab6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.0.4rc1" description="MySQL login path file reader" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.7" authors = [ {name = "Inada Naoki", email = "songofacandy@gmail.com"} ] @@ -17,6 +17,7 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",