Skip to content

Commit c25f9b6

Browse files
committed
Merge remote-tracking branch 'origin/master' into fix-typing
2 parents c5e1550 + 28d1db1 commit c25f9b6

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
build-backend = "setuptools.build_meta"
3-
requires = ["setuptools==80.9.0"]
3+
requires = ["setuptools>=80.9.0,<=82.0.1"]
44

55
[project]
66
name = "httptools"
@@ -18,7 +18,11 @@ authors = [
1818
{name = "Yury Selivanov", email="yury@magic.io"},
1919
]
2020
license = "MIT"
21-
license-files = ["LICENSE"]
21+
license-files = [
22+
"LICENSE",
23+
"vendor/http-parser/LICENSE-MIT",
24+
"vendor/llhttp/LICENSE",
25+
]
2226
description = "A collection of framework independent HTTP protocol utils."
2327
readme = "README.md"
2428

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools.command.build_ext import build_ext as build_ext
88

99

10-
CFLAGS = ['-O2']
10+
CFLAGS = ['-O2', '-DCYTHON_FREETHREADING_COMPATIBLE=1']
1111

1212
ROOT = pathlib.Path(__file__).parent
1313

0 commit comments

Comments
 (0)