Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 439cbdd

Browse files
committed
Use consistent project urls
1 parent f8e79fb commit 439cbdd

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.devcontainer/provision.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ python3.11 -m pip install -U pip setuptools wheel build
3939
pip install ruff
4040

4141
sudo apt-get install -y tox clang-format
42+
pip install -U tox
4243

4344
# install PostgreSQL client tools
4445

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ classifiers = [
3333
file = "LICENSE.txt"
3434

3535
[project.urls]
36-
homepage = "https://pygresql.github.io/"
37-
documentation = "https://pygresql.github.io/contents/"
38-
source = "https://github.com/PyGreSQL/PyGreSQL"
39-
issues = "https://github.com/PyGreSQL/PyGreSQL/issues/"
40-
changelog = "https://pygresql.github.io/contents/changelog.html"
41-
download = "https://pygresql.github.io/download/"
42-
"mailing list" = "https://mail.vex.net/mailman/listinfo/pygresql"
36+
Homepage = "https://pygresql.github.io/"
37+
Documentation = "https://pygresql.github.io/contents/"
38+
"Source Code" = "https://github.com/PyGreSQL/PyGreSQL"
39+
"Issue Tracker" = "https://github.com/PyGreSQL/PyGreSQL/issues/"
40+
Changelog = "https://pygresql.github.io/contents/changelog.html"
41+
Download = "https://pygresql.github.io/download/"
42+
"Mailing List" = "https://mail.vex.net/mailman/listinfo/pygresql"
4343

4444
[tool.ruff]
4545
target-version = "py37"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def finalize_options(self):
133133
author="D'Arcy J. M. Cain",
134134
author_email="[email protected]",
135135
url='https://pygresql.github.io/',
136-
download_url='https://pygresql.github.io/contents/download/',
136+
download_url='https://pygresql.github.io/download/',
137137
project_urls={
138138
'Documentation': 'https://pygresql.github.io/contents/',
139139
'Issue Tracker': 'https://github.com/PyGreSQL/PyGreSQL/issues/',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ deps =
3636
wheel>=0.41
3737
build>=0.10
3838
commands =
39-
python -m build -n -C strict -C memory-size
39+
python -m build -s -n -C strict -C memory-size
4040

4141
[testenv:coverage]
4242
basepython = python3.11

0 commit comments

Comments
 (0)