Skip to content

Commit 59dd075

Browse files
Make linters checks less strict in workflow
1 parent f6f86a6 commit 59dd075

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[flake8]
2-
ignore = E203, E266, W503, E704, E701, F824
2+
ignore = E203, E266, W503, E704, E701, F824, C901
33
max-line-length = 88
44
max-complexity = 18
55
per-file-ignores =

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,6 @@ jobs:
6767
run: |
6868
pytest
6969
70-
- name: Run linters
71-
run: |
72-
flake8 blacksheep
73-
flake8 tests
74-
7570
build:
7671
strategy:
7772
fail-fast: false
@@ -130,6 +125,7 @@ jobs:
130125
pytest itests
131126
132127
- name: Run linters
128+
continue-on-error: true
133129
run: |
134130
echo "Running linters - if build fails here, please be patient! Feel free to ask for assistance."
135131

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.4.4] - 2025-11-??
9+
10+
- Add support for `list[str]` as a value for `no-cache` and `private` directives in
11+
code handling cache control headers, by @karpetrosyan.
12+
813
## [2.4.3] - 2025-10-19 :musical_keyboard:
914

1015
- Add Python `3.14` and remove `3.9` from the build matrix.

0 commit comments

Comments
 (0)