Skip to content

Commit

Permalink
Fix a bug where the static site build doesn't know what version it's …
Browse files Browse the repository at this point in the history
…on. (#72)

* update dependencies in pyproject.toml

* bump version

* add fetch-tags option
  • Loading branch information
ahouseholder authored Jan 30, 2024
1 parent 432fb60 commit 2ed2a99
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy_site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 50
fetch-tags: true

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.8.0
2 changes: 1 addition & 1 deletion docs/includes/curr_ver.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The current version of the Vultron Protocol is

```python exec="true" idprefix=""
from vultron._version import __version__
from vultron import __version__

print(__version__)
```
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"mkdocs","mkdocs-material","mkdocs-material-extensions","mkdocstrings","mkdocstrings-python",
"mkdocs-include-markdown-plugin", "pandas","scipy"
"dataclasses-json", "markdown-exec", "mkdocs-include-markdown-plugin", "mkdocs-material-extensions",
"mkdocs-material", "mkdocs-print-site-plugin", "mkdocs", "mkdocstrings-python", "mkdocstrings", "networkx",
"owlready2", "pandas", "rdflib", "scipy",
]
dynamic = ["version",]

Expand Down

0 comments on commit 2ed2a99

Please sign in to comment.