committed by
GitHub
28 changed files with 82 additions and 223 deletions
@ -17,23 +17,21 @@ jobs: |
|||||
- name: Set up Python |
- name: Set up Python |
||||
uses: actions/setup-python@v4 |
uses: actions/setup-python@v4 |
||||
with: |
with: |
||||
python-version: "3.6" |
python-version: "3.7" |
||||
- uses: actions/cache@v3 |
- uses: actions/cache@v3 |
||||
id: cache |
id: cache |
||||
with: |
with: |
||||
path: ${{ env.pythonLocation }} |
path: ${{ env.pythonLocation }} |
||||
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish |
key: ${{ runner.os }}-python-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-publish |
||||
- name: Install Flit |
- name: Install build dependencies |
||||
if: steps.cache.outputs.cache-hit != 'true' |
if: steps.cache.outputs.cache-hit != 'true' |
||||
run: pip install flit |
run: pip install build |
||||
- name: Install Dependencies |
- name: Build distribution |
||||
if: steps.cache.outputs.cache-hit != 'true' |
run: python -m build |
||||
run: flit install --symlink |
|
||||
- name: Publish |
- name: Publish |
||||
env: |
uses: pypa/[email protected] |
||||
FLIT_USERNAME: ${{ secrets.FLIT_USERNAME }} |
with: |
||||
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }} |
password: ${{ secrets.PYPI_API_TOKEN }} |
||||
run: bash scripts/publish.sh |
|
||||
- name: Dump GitHub context |
- name: Dump GitHub context |
||||
env: |
env: |
||||
GITHUB_CONTEXT: ${{ toJson(github) }} |
GITHUB_CONTEXT: ${{ toJson(github) }} |
||||
|
@ -1,12 +1,16 @@ |
|||||
[build-system] |
[build-system] |
||||
requires = ["flit"] |
requires = ["hatchling"] |
||||
build-backend = "flit.buildapi" |
build-backend = "hatchling.build" |
||||
|
|
||||
[tool.flit.metadata] |
[project] |
||||
module = "fastapi" |
name = "fastapi" |
||||
author = "Sebastián Ramírez" |
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" |
||||
author-email = "[email protected]" |
readme = "README.md" |
||||
home-page = "https://github.com/tiangolo/fastapi" |
requires-python = ">=3.7" |
||||
|
license = "MIT" |
||||
|
authors = [ |
||||
|
{ name = "Sebastián Ramírez", email = "[email protected]" }, |
||||
|
] |
||||
classifiers = [ |
classifiers = [ |
||||
"Intended Audience :: Information Technology", |
"Intended Audience :: Information Technology", |
||||
"Intended Audience :: System Administrators", |
"Intended Audience :: System Administrators", |
||||
@ -26,7 +30,6 @@ classifiers = [ |
|||||
"Intended Audience :: Developers", |
"Intended Audience :: Developers", |
||||
"License :: OSI Approved :: MIT License", |
"License :: OSI Approved :: MIT License", |
||||
"Programming Language :: Python :: 3 :: Only", |
"Programming Language :: Python :: 3 :: Only", |
||||
"Programming Language :: Python :: 3.6", |
|
||||
"Programming Language :: Python :: 3.7", |
"Programming Language :: Python :: 3.7", |
||||
"Programming Language :: Python :: 3.8", |
"Programming Language :: Python :: 3.8", |
||||
"Programming Language :: Python :: 3.9", |
"Programming Language :: Python :: 3.9", |
||||
@ -34,17 +37,17 @@ classifiers = [ |
|||||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", |
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", |
||||
"Topic :: Internet :: WWW/HTTP", |
"Topic :: Internet :: WWW/HTTP", |
||||
] |
] |
||||
requires = [ |
dependencies = [ |
||||
"starlette==0.19.1", |
"starlette==0.19.1", |
||||
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0", |
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0", |
||||
] |
] |
||||
description-file = "README.md" |
dynamic = ["version"] |
||||
requires-python = ">=3.6.1" |
|
||||
|
|
||||
[tool.flit.metadata.urls] |
[project.urls] |
||||
|
Homepage = "https://github.com/tiangolo/fastapi" |
||||
Documentation = "https://fastapi.tiangolo.com/" |
Documentation = "https://fastapi.tiangolo.com/" |
||||
|
|
||||
[tool.flit.metadata.requires-extra] |
[project.optional-dependencies] |
||||
test = [ |
test = [ |
||||
"pytest >=6.2.4,<7.0.0", |
"pytest >=6.2.4,<7.0.0", |
||||
"pytest-cov >=2.12.0,<4.0.0", |
"pytest-cov >=2.12.0,<4.0.0", |
||||
@ -67,7 +70,6 @@ test = [ |
|||||
# types |
# types |
||||
"types-ujson ==4.2.1", |
"types-ujson ==4.2.1", |
||||
"types-orjson ==3.6.2", |
"types-orjson ==3.6.2", |
||||
"types-dataclasses ==0.6.5; python_version<'3.7'", |
|
||||
] |
] |
||||
doc = [ |
doc = [ |
||||
"mkdocs >=1.1.2,<2.0.0", |
"mkdocs >=1.1.2,<2.0.0", |
||||
@ -99,6 +101,9 @@ all = [ |
|||||
"uvicorn[standard] >=0.12.0,<0.18.0", |
"uvicorn[standard] >=0.12.0,<0.18.0", |
||||
] |
] |
||||
|
|
||||
|
[tool.hatch.version] |
||||
|
path = "fastapi/__init__.py" |
||||
|
|
||||
[tool.isort] |
[tool.isort] |
||||
profile = "black" |
profile = "black" |
||||
known_third_party = ["fastapi", "pydantic", "starlette"] |
known_third_party = ["fastapi", "pydantic", "starlette"] |
||||
@ -128,6 +133,4 @@ filterwarnings = [ |
|||||
# TODO: needed by asyncio in Python 3.9.7 https://bugs.python.org/issue45097, try to remove on 3.9.8 |
# TODO: needed by asyncio in Python 3.9.7 https://bugs.python.org/issue45097, try to remove on 3.9.8 |
||||
'ignore:The loop argument is deprecated since Python 3\.8, and scheduled for removal in Python 3\.10:DeprecationWarning:asyncio', |
'ignore:The loop argument is deprecated since Python 3\.8, and scheduled for removal in Python 3\.10:DeprecationWarning:asyncio', |
||||
'ignore:starlette.middleware.wsgi is deprecated and will be removed in a future release\..*:DeprecationWarning:starlette', |
'ignore:starlette.middleware.wsgi is deprecated and will be removed in a future release\..*:DeprecationWarning:starlette', |
||||
# TODO: remove after dropping support for Python 3.6 |
|
||||
'ignore:Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography and will be removed in a future release.:UserWarning:jose', |
|
||||
] |
] |
||||
|
Loading…
Reference in new issue