diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 8401ea5..8b0e1ab 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -41,7 +41,14 @@ jobs: with: python-version: ${{matrix.python-version}} + - name: Setup poetry (windows 3.7) + if: ${{ matrix.python-version == '3.7' && matrix.platform == 'windows-latest' }} + uses: abatilo/actions-poetry@v2 + with: + poetry-version: 1.3.2 + - name: Setup poetry + if: ${{ matrix.python-version != '3.7' || matrix.platform != 'windows-latest' }} uses: abatilo/actions-poetry@v2 - name: Fix urllib3 for py 3.7 diff --git a/coverage_lcov/__init__.py b/coverage_lcov/__init__.py index 8c2be2a..4a6a569 100644 --- a/coverage_lcov/__init__.py +++ b/coverage_lcov/__init__.py @@ -3,4 +3,4 @@ # import toml # __version__ = toml.load(os.path.join(os.path.dirname(__file__), "..", "pyproject.toml"))["tool"]["poetry"]["version"] -__version__ = "0.2.6" +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index 9bf5e3f..6ec6ff4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ strict_equality = true [tool.poetry] name = "coverage-lcov" -version = "0.2.5" +version = "0.3.0" description = "A simple .coverage to LCOV converter" authors = [ "Adam Weeden ", diff --git a/tests/test_coverage_lcov.py b/tests/test_coverage_lcov.py index 29c6df2..f7d359c 100644 --- a/tests/test_coverage_lcov.py +++ b/tests/test_coverage_lcov.py @@ -4,7 +4,7 @@ def test_version() -> None: - assert __version__ == "0.2.6" + assert __version__ == "0.3.0" def test_parse_sample_coverage_file() -> None: