Skip to content

Commit 109701d

Browse files
committed
fix: should build "macosx_10_9" wheel instead of "macosx_11_0" #4
1 parent d55ba78 commit 109701d

3 files changed

Lines changed: 11 additions & 10 deletions

File tree

fastapi_tailwind/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
✨ TailwindCSS support for 🔥 FastAPI.
33
"""
44

5-
__version__ = "1.0.1alpha5"
5+
__version__ = "1.0.1alpha6"

pyproject.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ keywords = [
1414
"fastapi middleware"
1515
]
1616
classifiers = [
17-
'Operating System :: Microsoft :: Windows :: Windows 11',
18-
'Operating System :: Microsoft :: Windows :: Windows 10',
19-
'Operating System :: POSIX :: Linux',
20-
'License :: OSI Approved :: MIT License',
21-
'Programming Language :: Python :: 3.9',
22-
'Programming Language :: Python :: 3.10',
23-
'Programming Language :: Python :: 3.11',
24-
'Programming Language :: Python :: 3.12',
17+
"Operating System :: Microsoft :: Windows :: Windows 11",
18+
"Operating System :: Microsoft :: Windows :: Windows 10",
19+
"Operating System :: POSIX :: Linux",
20+
"Operating System :: MacOS",
21+
"License :: OSI Approved :: MIT License",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
2526
]
2627
dependencies = [
2728
"fastapi",

scripts/multi_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333
),
3434
"macos": (
35-
"macosx_11_0",
35+
"macosx_10_9",
3636
{
3737
"x64": "x86_64"
3838
}

0 commit comments

Comments
 (0)