Skip to content

Commit

Permalink
Merge pull request #15 from TheCleric/update/python_versions_mac
Browse files Browse the repository at this point in the history
Update versions to 0.3.0 in advance of new release
  • Loading branch information
TheCleric authored Jun 21, 2024
2 parents 656ae57 + 47a46c1 commit 296523b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion coverage_lcov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <adamweeden@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_coverage_lcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 296523b

Please sign in to comment.