From 807ffc1a7c89f97b6e7bd309a656448a57aaaf0d Mon Sep 17 00:00:00 2001 From: pavel Date: Sat, 16 Dec 2023 19:27:46 +0300 Subject: [PATCH] update repo url --- README.md | 4 ++-- docs/benchmarks.rst | 2 +- docs/conf.py | 4 ++-- docs/contributing.rst | 2 +- docs/index.rst | 2 +- docs/specific_types_behavior.rst | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index efc3020d..69966743 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![PyPI version](https://img.shields.io/pypi/v/adaptix.svg?color=blue)](https://pypi.org/project/adaptix/) [![downloads](https://img.shields.io/pypi/dm/adaptix.svg)](https://pypistats.org/packages/adaptix) -[![versions](https://img.shields.io/pypi/pyversions/adaptix.svg)](https://github.com/reagento/dataclass_factory) -[![license](https://img.shields.io/github/license/reagento/dataclass_factory.svg)](https://github.com/reagento/dataclass_factory/blob/master/LICENSE) +[![versions](https://img.shields.io/pypi/pyversions/adaptix.svg)](https://github.com/reagento/adaptix) +[![license](https://img.shields.io/github/license/reagento/dataclass_factory.svg)](https://github.com/reagento/adaptix/blob/master/LICENSE) An extremely flexible and configurable data model conversion library. diff --git a/docs/benchmarks.rst b/docs/benchmarks.rst index d1a99791..c1605e79 100644 --- a/docs/benchmarks.rst +++ b/docs/benchmarks.rst @@ -10,7 +10,7 @@ These benchmarks aim to make a complete, fair, and reliable comparison between different libraries among different versions of Python. If you find a mistake in benchmarking methods or you want to add another library to the comparison -create a new `issue `__. +create a new `issue `__. All benchmarks are made via `pyperf `__ -- an advanced library used to measure the performance of Python interpreters. diff --git a/docs/conf.py b/docs/conf.py index 0ffb1930..488b0743 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -99,11 +99,11 @@ extlinks = { 'adaptix-view-repo': ( - 'https://github.com/reagento/dataclass-factory/tree/3.x/develop/%s', + 'https://github.com/reagento/adaptix/tree/3.x/develop/%s', '%s', ), 'adaptix-view-repo-commit': ( - f'https://github.com/reagento/dataclass-factory/tree/{repo.head.object.hexsha}/%s', + f'https://github.com/reagento/adaptix/tree/{repo.head.object.hexsha}/%s', '%s', ), 'adaptix-benchmarks-data': ( diff --git a/docs/contributing.rst b/docs/contributing.rst index ee112439..3eeee8fb 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -29,7 +29,7 @@ How to setup the repository .. code-block:: bash - git clone --recurse-submodules https://github.com/reagento/dataclass-factory + git clone --recurse-submodules https://github.com/reagento/adaptix 4. Checkout to ``3.x/develop`` diff --git a/docs/index.rst b/docs/index.rst index 80a9d803..c4405355 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -19,7 +19,7 @@ Adaptix :maxdepth: 2 :caption: Project Links: - GitHub + GitHub PyPI diff --git a/docs/specific_types_behavior.rst b/docs/specific_types_behavior.rst index dd44ab83..58eaec0d 100644 --- a/docs/specific_types_behavior.rst +++ b/docs/specific_types_behavior.rst @@ -208,7 +208,7 @@ So if a field with ``Iterable[int]`` type will contain ``List[int]``, the list will be converted to a tuple while dumping. Tuple of dynamic length like ``*tuple[int, ...]`` isn't supported yet. -This doesn't applies for tuples like ``*tuple[int, str]`` (constant lenght tuples). +This doesn't applies for tuples like ``*tuple[int, str]`` (constant length tuples). Dict and Mapping '''''''''''''''''''''