Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TheKevJames/coveralls-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cbf5bbe1471b307452bb408b7156656e4eb5e96c
Choose a base ref
..
head repository: TheKevJames/coveralls-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eb9488e43322e1582099d39503864960b1965283
Choose a head ref
Showing with 193 additions and 177 deletions.
  1. +1 −1 .circleci/config.yml
  2. +1 −1 .github/workflows/build.yml
  3. +2 −2 .github/workflows/dependencies.yaml
  4. +1 −1 .github/workflows/test.yml
  5. +4 −4 .pre-commit-config.yaml
  6. +183 −167 poetry.lock
  7. +1 −1 pyproject.toml
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ jobs:
# TODO: this should be doable with curl or python...
docker-readme-push:
docker:
- image: node:22.9.0-alpine
- image: node:22.11.0-alpine
parameters:
ident:
type: string
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4.2.1
- uses: actions/checkout@v4.2.2
- uses: actions/setup-python@v5
with:
python-version: '3.12'
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yaml
Original file line number Diff line number Diff line change
@@ -9,6 +9,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4.3.4
uses: actions/dependency-review-action@v4.5.0
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4.2.1
- uses: actions/checkout@v4.2.2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ default_language_version:

repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v3.4.0
rev: v3.6.0
hooks:
- id: conventional-pre-commit
- repo: https://github.com/pre-commit/pre-commit-hooks
@@ -79,7 +79,7 @@ repos:
- id: remove-tabs
exclude: 'Makefile'
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.13.0
rev: v3.14.0
hooks:
- id: reorder-python-imports
args: [--py38-plus]
@@ -195,13 +195,13 @@ repos:

# json
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.3
rev: 0.30.0
hooks:
- id: check-github-workflows
- id: check-renovate
additional_dependencies:
# renovate: datasource=pypi depName=pyjson5
- pyjson5==1.6.6
- pyjson5==1.6.7

# docker
- repo: https://github.com/AleksaC/hadolint-py
350 changes: 183 additions & 167 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ requests = ">=1.0.0,<3.0.0"
pyyaml = { version = ">=3.10,<7.0", optional = true }

[tool.poetry.group.dev.dependencies]
pytest = "8.3.3"
pytest = "8.3.4"
responses = "0.25.0"

[tool.poetry.group.docs]