Skip to content

Commit 04899de

Browse files
committed
chore(ci): let renovate manage versions in gha
1 parent 7eee9d8 commit 04899de

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ jobs:
1515
- uses: actions/checkout@v6.0.2
1616
- uses: actions/setup-python@v6
1717
with:
18+
# renovate: datasource=docker depName=python
1819
python-version: '3.12'
1920
- uses: snok/install-poetry@v1.4.1
2021
with:
21-
# TODO: renovate
22-
version: 1.8.2
22+
# renovate: datasource=pypi depName=poetry
23+
version: 2.3.1
2324
- run: poetry build
2425
- name: Publish package distributions to PyPI
2526
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/setup-python@v6
1515
with:
1616
python-version: ${{ matrix.python-version }}
17+
allow-prereleases: true
1718
- name: Install dependencies
1819
run: python -m pip install --upgrade pip tox tox-gh-actions
1920
- run: tox

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
[tool.poetry.urls]
2626
Changelog = "https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md"
2727
Docs = "https://coveralls-python.rtfd.io/"
28+
Repository = "https://github.com/TheKevJames/coveralls-python"
2829

2930
[tool.poetry.scripts]
3031
coveralls = "coveralls.cli:main"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ python =
1313
passenv = *
1414
usedevelop = true
1515
deps =
16-
responses==0.25.0
17-
pytest==8.1.1
16+
responses==0.25.8
17+
pytest==9.0.2
1818
pyyaml: PyYAML>=3.10,<7.0
1919
cov5: coverage[toml]>=5.0,<6.0
2020
cov6: coverage[toml]>=6.0,<7.0

0 commit comments

Comments
 (0)