Skip to content

Commit

Permalink
ci: don't use dev versions
Browse files Browse the repository at this point in the history
that breaks the website
  • Loading branch information
mhils committed Sep 11, 2024
1 parent db6a3ab commit 9066d21
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/release
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,5 @@ if __name__ == "__main__":
update_changelog()
git_commit()
git_tag()

if branch == "main":
update_python_version(version=get_next_dev_version())
git_commit(message="reopen main for development")

git_push()
logger.info("✅ All done. 🥳")
2 changes: 1 addition & 1 deletion pdoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ def bark(self, loud: bool) -> None:
from __future__ import annotations

__docformat__ = "markdown" # explicitly disable rST processing in the examples above.
__version__ = "15.7.0-dev" # this is read from setup.py
__version__ = "14.7.0" # this is read from setup.py

from pathlib import Path
from typing import overload
Expand Down

0 comments on commit 9066d21

Please sign in to comment.