diff --git a/.github/workflows/deploy_site.yml b/.github/workflows/deploy_site.yml index 2e10704b..e048cf5e 100644 --- a/.github/workflows/deploy_site.yml +++ b/.github/workflows/deploy_site.yml @@ -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 diff --git a/VERSION b/VERSION index faef31a4..a3df0a69 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.8.0 diff --git a/docs/includes/curr_ver.md b/docs/includes/curr_ver.md index 2610219c..3e77a56b 100644 --- a/docs/includes/curr_ver.md +++ b/docs/includes/curr_ver.md @@ -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__) ``` diff --git a/pyproject.toml b/pyproject.toml index a46541f2..e0d0e4ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",]