Skip to content

Commit bb83945

Browse files
committed
Merge branch 'develop' into python-3.14
2 parents 665479f + 033493f commit bb83945

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/execute-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
test:
2020
runs-on: ${{ inputs.os }}
2121
strategy:
22-
fail-fast: true
2322
matrix:
2423
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2524
name: Python ${{ matrix.python-version }}
@@ -64,7 +63,7 @@ jobs:
6463

6564
- name: Upload coverage
6665
uses: codecov/codecov-action@v4
67-
if: ${{ inputs.os == 'ubuntu-latest' && matrix.python-version == '3.9' && (github.event_name != 'pull_request' || !github.event.pull_request.head.repo.fork) }}
66+
if: ${{ inputs.os == 'ubuntu-latest' && matrix.python-version == '3.9' && (github.event_name == 'push' && !startsWith(github.ref, 'refs/heads/dependabot/') || (github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork)) }}
6867
with:
6968
token: ${{ secrets.CODECOV_TOKEN }}
7069
fail_ci_if_error: true

.verchew.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = GNU Make
55

66
[Python]
77

8-
cli = python3
8+
cli = python
99
version = 3.9 || 3.10 || 3.11 || 3.12 || 3.13
1010

1111
[Poetry]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ VIRTUAL_ENV ?= .venv
1616
all: doctor format check test mkdocs demo ## Run all tasks that determine CI status
1717

1818
.PHONY: dev
19-
dev: install .clean-test ## Continuously run all CI tasks when files chanage
19+
dev: install .clean-test ## Continuously run all CI tasks when files change
2020
poetry run sniffer
2121

2222
.PHONY: dev-install
@@ -69,7 +69,7 @@ format: install
6969
@ echo
7070

7171
.PHONY: check
72-
check: install format ## Run formaters, linters, and static analysis
72+
check: install format ## Run formatters, linters, and static analysis
7373
ifdef CI
7474
git diff --exit-code -- '***.py'
7575
endif

bin/checksum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

44
import hashlib

bin/example-adapter.wsgi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python
22
#
33
# Example adapter.wsgi for doorstop.
44

bin/verchew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

44
# The MIT License (MIT)

0 commit comments

Comments
 (0)