Skip to content

Commit

Permalink
update repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
zhPavel committed Dec 16, 2023
1 parent f8d8934 commit 807ffc1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/benchmarks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/reagento/dataclass-factory/issues>`__.
create a new `issue <https://github.com/reagento/adaptix/issues>`__.

All benchmarks are made via `pyperf <https://github.com/psf/pyperf>`__ --
an advanced library used to measure the performance of Python interpreters.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': (
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Adaptix
:maxdepth: 2
:caption: Project Links:

GitHub <https://github.com/reagento/dataclass-factory/tree/3.x/develop>
GitHub <https://github.com/reagento/adaptix/tree/3.x/develop>
PyPI <https://pypi.org/project/adaptix>


Expand Down
2 changes: 1 addition & 1 deletion docs/specific_types_behavior.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
'''''''''''''''''''''
Expand Down

0 comments on commit 807ffc1

Please sign in to comment.