Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance: Move repository to pyveci organization #24

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEVELOP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test suite, is::

For installing the package inside a development sandbox (virtualenv), run::

git clone https://github.com/daq-tools/sqlalchemy-postgresql-relaxed
git clone https://github.com/pyveci/sqlalchemy-postgresql-relaxed
cd sqlalchemy-postgresql-relaxed
python3 -m venv .venv
source .venv/bin/activate
Expand Down
22 changes: 11 additions & 11 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. image:: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/workflows/Tests/badge.svg
:target: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/actions?workflow=Tests
.. image:: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/workflows/Tests/badge.svg
:target: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/actions?workflow=Tests

.. image:: https://codecov.io/gh/daq-tools/sqlalchemy-postgresql-relaxed/branch/main/graph/badge.svg
:target: https://codecov.io/gh/daq-tools/sqlalchemy-postgresql-relaxed
.. image:: https://codecov.io/gh/pyveci/sqlalchemy-postgresql-relaxed/branch/main/graph/badge.svg
:target: https://codecov.io/gh/pyveci/sqlalchemy-postgresql-relaxed
:alt: Test suite code coverage

.. image:: https://pepy.tech/badge/sqlalchemy-postgresql-relaxed/month
Expand All @@ -18,7 +18,7 @@
:target: https://pypi.org/project/sqlalchemy-postgresql-relaxed/

.. image:: https://img.shields.io/pypi/l/sqlalchemy-postgresql-relaxed.svg
:target: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/blob/main/LICENSE
:target: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/blob/main/LICENSE

|

Expand Down Expand Up @@ -84,7 +84,7 @@ Setup

To install the latest development version from the repository, invoke::

pip install --upgrade git+https://github.com/daq-tools/sqlalchemy-postgresql-relaxed
pip install --upgrade git+https://github.com/pyveci/sqlalchemy-postgresql-relaxed


*******************
Expand All @@ -108,8 +108,8 @@ you should be ready to start hacking.
Resources
=========

- `Source code repository <https://github.com/daq-tools/sqlalchemy-postgresql-relaxed>`_
- `Documentation <https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/blob/main/README.rst>`_
- `Source code repository <https://github.com/pyveci/sqlalchemy-postgresql-relaxed>`_
- `Documentation <https://github.com/pyveci/sqlalchemy-postgresql-relaxed/blob/main/README.rst>`_
- `Python Package Index (PyPI) <https://pypi.org/project/sqlalchemy-postgresql-relaxed/>`_

License and warranty
Expand All @@ -118,6 +118,6 @@ License and warranty
The project is licensed under the terms of the MIT license, see `LICENSE`_.


.. _Create an issue: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/issues/new
.. _development sandbox: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/blob/main/DEVELOP.rst
.. _LICENSE: https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/blob/main/LICENSE
.. _Create an issue: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/issues/new
.. _development sandbox: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/blob/main/DEVELOP.rst
.. _LICENSE: https://github.com/pyveci/sqlalchemy-postgresql-relaxed/blob/main/LICENSE
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ test = [
"pytest-cov<5",
]
[project.urls]
changelog = "https://github.com/daq-tools/sqlalchemy-postgresql-relaxed/blob/main/CHANGES.rst"
documentation = "https://github.com/daq-tools/sqlalchemy-postgresql-relaxed"
homepage = "https://github.com/daq-tools/sqlalchemy-postgresql-relaxed"
repository = "https://github.com/daq-tools/sqlalchemy-postgresql-relaxed"
changelog = "https://github.com/pyveci/sqlalchemy-postgresql-relaxed/blob/main/CHANGES.rst"
documentation = "https://github.com/pyveci/sqlalchemy-postgresql-relaxed"
homepage = "https://github.com/pyveci/sqlalchemy-postgresql-relaxed"
repository = "https://github.com/pyveci/sqlalchemy-postgresql-relaxed"
[project.entry-points."sqlalchemy.dialects"]
"postgresql.asyncpg_relaxed" = "sqlalchemy_postgresql_relaxed.asyncpg:dialect"
"postgresql.psycopg_relaxed" = "sqlalchemy_postgresql_relaxed.psycopg:dialect"
Expand Down