Skip to content

Commit 72f55a1

Browse files
committed
Org name changed
Signed-off-by: chandr-andr (Kiselev Aleksandr) <chandr@chandr.net>
1 parent 95a3bb7 commit 72f55a1

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.github/workflows/release_docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: peaceiris/actions-gh-pages@v3
3131
with:
3232
personal_token: ${{ secrets.PERSONAL_TOKEN }}
33-
external_repository: qaspen-python/qaspen-python.github.io
33+
external_repository: psqlpy-python/psqlpy-python.github.io
3434
publish_dir: ./docs_dist
3535
user_name: "github-actions[bot]"
3636
user_email: "github-actions[bot]@users.noreply.github.com"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Driver for PostgreSQL written fully in Rust and exposed to Python.
88
Main goals of the library is speed and type safety.
99

1010
## Documentation
11-
You can find full documentation here - [PSQLPy documentation](https://qaspen-python.github.io/)
11+
You can find full documentation here - [PSQLPy documentation](https://psqlpy-python.github.io/)
1212

1313
## Installation
1414

docs/.vuepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ export default defineUserConfig({
1212
bundler: viteBundler(),
1313

1414
theme: hopeTheme({
15-
repo: "qaspen-python/psqlpy",
15+
repo: "psqlpy-python/psqlpy",
1616

1717
repoLabel: "GitHub",
1818

1919
repoDisplay: true,
2020

2121
sidebar,
2222

23-
hostname: "https://qaspen-python.github.io/",
23+
hostname: "https://psqlpy-python.github.io/",
2424

2525
plugins: {
2626
readingTime: false,

docs/.vuepress/theme.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { hopeTheme } from "vuepress-theme-hope";
22
import sidebar from "./sidebar.js";
33

44
export default hopeTheme({
5-
hostname: "https://github.com/qaspen-python/psqlpy",
5+
hostname: "https://github.com/psqlpy-python/psqlpy",
66

77
iconAssets: "fontawesome-with-brands",
88

99
logo: "./logo.png",
1010

11-
repo: "qaspen-python/psqlpy",
11+
repo: "psqlpy-python/psqlpy",
1212

1313
docsDir: "src",
1414

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ poetry add psqlpy
5252
@tab git
5353

5454
```bash
55-
pip install git+https://github.com/qaspen-python/psqlpy
55+
pip install git+https://github.com/psqlpy-python/psqlpy
5656
```
5757

5858
:::

docs/contribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ There are several rules for contributors:
88
- Please do not add malware.
99
- Please make sure that your request solves the problem.
1010

11-
If you struggle with something or feel frustrated, you either create an issue, create a [discussions](https://github.com/qaspen-python/psqlpy/discussions). page or publish a draft PR and ask your question in the description.
11+
If you struggle with something or feel frustrated, you either create an issue, create a [discussions](https://github.com/psqlpy-python/psqlpy/discussions). page or publish a draft PR and ask your question in the description.
1212

1313
We have lots of tests in CI. But since CI runs from first-time contributors should be approved, you better test locally. It just takes less time to prepare PR for merging.
1414

docs/introduction/lets_start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ poetry add psqlpy
2222
@tab git
2323

2424
```bash
25-
pip install git+https://github.com/qaspen-python/psqlpy
25+
pip install git+https://github.com/psqlpy-python/psqlpy
2626
```
2727

2828
:::

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "psqlpy-docs",
3-
"repository": "git@github.com:qaspen-python/psqlpy.git",
3+
"repository": "git@github.com:psqlpy-python/psqlpy.git",
44
"author": "Kiselev Aleksandr <askiselev00@gmail.com>",
55
"license": "MIT",
66
"private": false,

psqlpy-stress/poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

psqlpy-stress/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pytz = "^2024.1"
2121
psycopg2-binary = "^2.9.9"
2222
gunicorn = "^21.2.0"
2323
uvicorn = "^0.29.0"
24-
psqlpy-piccolo = { git = "https://github.com/qaspen-python/psqlpy-piccolo" }
24+
psqlpy-piccolo = { git = "https://github.com/psqlpy-python/psqlpy-piccolo" }
2525
piccolo = "^1.12.0"
2626

2727

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ module-name = "psqlpy._internal"
4444
features = ["pyo3/extension-module"]
4545

4646
[project.urls]
47-
homepage = "https://github.com/qaspen-python/psqlpy"
48-
repository = "https://github.com/qaspen-python/psqlpy"
49-
documentation = "https://qaspen-python.github.io/"
47+
homepage = "https://github.com/psqlpy-python/psqlpy"
48+
repository = "https://github.com/psqlpy-python/psqlpy"
49+
documentation = "https://psqlpy-python.github.io/"
5050

5151
[tool.isort]
5252
profile = "black"

0 commit comments

Comments
 (0)