Skip to content

Commit

Permalink
lib: Support Python 3.6 so this can be used in more projects (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCleric authored Mar 29, 2022
1 parent c7e0334 commit 4b8eec2
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
id: tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}

- name: Set up Python 3.8
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.6"

- name: Install Poetry
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
__pycache__
.DS_Store
.venv
.python-version
/dist/*
.coverage
lcov.info
128 changes: 118 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["coverage"]
coveragepy-lcov = "coveragepy_lcov.cli:main"

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.6.3"
coverage = "^5.5"
click = ">=7.1.2"

Expand Down

0 comments on commit 4b8eec2

Please sign in to comment.