Skip to content

Commit 55fc813

Browse files
authored
Hotfix release (#127)
### What kind of change does this PR introduce? <!--(Bug fix, feature, docs update, etc.)--> * Fixes the metadata so that the package has URLs * Adds the autogenerated docs portion to the `.gitignore` * Updates the release date to 2025-03-24 ### Does this PR introduce a breaking change? <!--(Has there been an API change? New dependencies?)--> No. Users need to generate the docs if they wish to work on them from the source package.
2 parents 97363f7 + cdae2e4 commit 55fc813

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ wheels/
2525
.installed.cfg
2626
*.egg
2727

28+
# Sphinx
29+
docs/daops*.rst
30+
docs/modules.rst
31+
2832
# PyInstaller
2933
# Usually these files are written by a python script from a template
3034
# before PyInstaller builds the exe, so as to inject date/other infos into it.

HISTORY.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Version History
22
===============
33

4-
v0.15.0 (2025-03-21)
4+
v0.15.0 (2025-03-24)
55
--------------------
66

77
Breaking Changes
88
^^^^^^^^^^^^^^^^
99
* ``clisops``>=0.16.1 and ``pandas``>=2.1 are now required.
10+
* Dropped support for Python3.9.
1011

1112
v0.14.0 (2025-02-13)
1213
--------------------

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ maintainers = [
1414
license = {text = "BSD"}
1515
readme = {file = "README.rst", content-type = "text/x-rst"}
1616
keywords = ["daops"]
17-
homepage = "https://github.com/roocs/daops"
1817
requires-python = ">=3.10"
1918
classifiers = [
2019
"Development Status :: 4 - Beta",
@@ -91,6 +90,12 @@ docs = [
9190
[project.scripts]
9291
daops = "daops.cli:main"
9392

93+
[project.urls]
94+
"Changelog" = "https://daops.readthedocs.io/en/stable/history.html"
95+
"Homepage" = "https://daops.readthedocs.io/"
96+
"Issue tracker" = "https://github.com/roocs/daops/issues"
97+
"Source" = "https://github.com/roocs/daops"
98+
9499
[tool]
95100

96101
[tool.black]

0 commit comments

Comments
 (0)