mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
f341049b9e
* Remove Cython * fix CI * fix coverage * fix tests * switching to pypyroject.toml * pre-commit all and use pre-commit for linting * no mypy tests on macos and windows on ci, use flake8-pyproject * fix docs and tests CI * check build is working * drop pytest-cov * window and macos ci with 3.11, reduce filtering * use pip-tools to pin all dependencies * fix docs and fastapi tests * fix test deps for 3.7 * no cache on tests job * revert fastapi changes, fix coverage * fix mypy coverage * test with older mypy * dotenv not required for mypy tests * split testing requirements std and extra * typo * @PrettyWood comments * correct branch name * mypy python_version and pr template
27 lines
594 B
Python
27 lines
594 B
Python
import sys
|
|
|
|
sys.stderr.write(
|
|
"""
|
|
===============================
|
|
Unsupported installation method
|
|
===============================
|
|
pydantic no longer supports installation with `python setup.py install`.
|
|
Please use `python -m pip install .` instead.
|
|
"""
|
|
)
|
|
sys.exit(1)
|
|
|
|
|
|
# The below code will never execute, however GitHub is particularly
|
|
# picky about where it finds Python packaging metadata.
|
|
# See: https://github.com/github/feedback/discussions/6456
|
|
#
|
|
# To be removed once GitHub catches up.
|
|
|
|
setup(
|
|
name='pydantic',
|
|
install_requires=[
|
|
'typing-extensions>=4.1.0'
|
|
],
|
|
)
|