Skip to content

Commit 7680e6f

Browse files
authored
Merge pull request #2 from jason810496/docs/fix-readme-rtd-links
Docs/fix readme rtd links
2 parents b6c3a65 + 9f05e7d commit 7680e6f

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ build:
1616

1717
# Build documentation in the "docs/" directory with Sphinx
1818
sphinx:
19-
configuration: docs/conf.py
19+
configuration: doc/conf.py
2020
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
2121
# builder: "dirhtml"
2222
# Fail on all warnings to avoid broken references
@@ -32,4 +32,4 @@ sphinx:
3232
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
3333
python:
3434
install:
35-
- requirements: docs/requirements.txt
35+
- requirements: doc/requirements.txt

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
[![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/)
22
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
33
![PyPI - Version](https://img.shields.io/pypi/v/pgmq-sqlalchemy)
4-
[![PyPI - License](https://img.shields.io/pypi/l/pgmq-sqlalchemy.svg)](https://github.com/pgmq-sqlalchemy/pgmq-sqlalchemy-python/blob/main/LICENSE)
4+
[![PyPI - License](https://img.shields.io/pypi/l/pgmq-sqlalchemy.svg)](https://github.com/jason810496/pgmq-sqlalchemy/blob/main/LICENSE)
55
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pgmq-sqlalchemy.svg)](https://pypi.python.org/pypi/pgmq-sqlalchemy)
66
[![codecov](https://codecov.io/gh/jason810496/pgmq-sqlalchemy/graph/badge.svg?token=C5ZVZCW7TE)](https://codecov.io/gh/jason810496/pgmq-sqlalchemy)
7-
[![Docs](https://readthedocs.org/projects/pgmq-sqlalchemy-python/badge/?version=latest)](http://pgmq-sqlalchemy-python.readthedocs.io/en/latest/?badge=latest)
7+
[![Documentation Status](https://readthedocs.org/projects/pgmq-sqlalchemy/badge/?version=latest)](https://pgmq-sqlalchemy.readthedocs.io/en/latest/?badge=latest)
8+
89

910
# pgmq-sqlalchemy
1011

@@ -41,9 +42,9 @@ pip install pgmq-sqlalchemy
4142
Install with additional DBAPIs packages:
4243

4344
```bash
44-
pip install pgmq-sqlalchemy[psycopg2]
45-
pip install pgmq-sqlalchemy[asyncpg]
46-
# pip install pgmq-sqlalchemy[postgres-python-driver]
45+
pip install "pgmq-sqlalchemy[asyncpg]"
46+
pip install "pgmq-sqlalchemy[psycopg2-binary]"
47+
# pip install "pgmq-sqlalchemy[postgres-python-driver]"
4748
```
4849

4950
## Getting Started
@@ -60,7 +61,7 @@ docker run -d --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 quay.io
6061
### Usage
6162

6263
> [!NOTE]
63-
> Check [pgmq-sqlalchemy Document](https://pgmq-sqlalchemy-python.readthedocs.io/en/latest/) for more examples and detailed usage.
64+
> Check [pgmq-sqlalchemy Document](https://pgmq-sqlalchemy.readthedocs.io/en/latest/) for more examples and detailed usage.
6465
6566

6667
For `dispatcher.py`:
@@ -114,7 +115,7 @@ print(metrics.total_messages)
114115
## Issue/ Contributing / Development
115116

116117
Welcome to open an issue or pull request ! <br>
117-
See [`Development` on Online Document](https://pgmq-sqlalchemy-python.readthedocs.io/en/latest/) or [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information.
118+
See [`Development` on Online Document](https://pgmq-sqlalchemy.readthedocs.io/en/latest/) or [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information.
118119

119120
## TODO
120121

doc/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
sphinx
2-
sphinx-autobuild
32
sphinx-rtd-theme
4-
sphinx-copybutton
3+
sphinx-copybutton
4+
SQLAlchemy

0 commit comments

Comments
 (0)