From d904e78e849a35611bc78b82ddbcfc20ebcaff38 Mon Sep 17 00:00:00 2001 From: Edward Xu Date: Sun, 18 Jun 2023 13:44:35 +0200 Subject: [PATCH] Run tests with more Python versions and on latest MacOS (#146) --- .github/workflows/ci.yml | 12 ++++++------ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4e4369..7aca294 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: "3.7" - name: Install pre-commit run: | pip install pre-commit==2.9.2 @@ -49,8 +49,8 @@ jobs: needs: pre-commit strategy: matrix: - python-version: [3.7, 3.8] - os: [ubuntu-22.04, windows-2022, macos-11] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + os: [ubuntu-22.04, windows-2022, macos-13] defaults: run: shell: bash @@ -91,7 +91,7 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: "3.7" - uses: snok/install-poetry@v1.3.3 with: virtualenvs-create: true @@ -109,8 +109,8 @@ jobs: needs: build strategy: matrix: - python-version: [3.7, 3.8] - os: [ubuntu-22.04, windows-2022, macos-11] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + os: [ubuntu-22.04, windows-2022, macos-13] defaults: run: shell: bash diff --git a/pyproject.toml b/pyproject.toml index 03639e3..d1f56df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cmdict" -version = "0.1.4" +version = "0.1.5" description = "A command line dictionary toolset." authors = ["zequnyu ", "edxu96 "] license = "GPL-3.0"