diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index f7306ba..67da7ea 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -43,5 +43,6 @@ jobs: env: GH_TOKEN: ${{ github.token }} REPO_NAME: ${{ github.repository }} - TAG: $(task version) - run: gh release create "$TAG" --repo="$REPO_NAME" --title="$TAG" --generate-notes \ No newline at end of file + run: | + echo "Publishing release v$(task version)" + gh release create v$(task version) --repo ${REPO_NAME} --title v$(task version) --generate-notes \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index 74a8c00..aa143c6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1948,4 +1948,4 @@ recsys = ["gymnasium", "highway-env", "keras", "tensorboard", "torch", "torchviz [metadata] lock-version = "2.0" python-versions = ">=3.9,<4" -content-hash = "e423dbfce30b4c65d839bc5c7856ba476957f608a28e4a2fb3fca5d384da2006" +content-hash = "cd342a443a9ec2cdeff4dc8970328cf727edea782407f3b695c15da0f9b521ac" diff --git a/pyproject.toml b/pyproject.toml index 55b7fec..27cdd01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,15 @@ [tool.poetry] name = "deeprecsys" -version = "0.2.2" +version = "0.2.4" description = "deeprecsys is an open tool belt to speed up the development of modern data science projects at an enterprise level" authors = ["Lucas Farris "] -license = "MIT" +license = "GPL-3.0-or-later" +readme = "README.md" +homepage = "https://deeprecsys.com" +repository = "https://github.com/luksfarris/deeprecsys" +documentation = "https://deeprecsys.com" +keywords = ["machinelearning", "reinforcementlearning", "recommmendersystems", "deeplearning", "datascience"] +classifiers = ["Topic :: Scientific/Engineering :: Artificial Intelligence"] [[tool.poetry.source]] name = "cputorch" @@ -15,7 +21,7 @@ priority = "supplemental" python = ">=3.9,<4" pandas = "^2.2.2" pyarrow = "^16.1.0" -torch = { version = "^2.3.0+cpu", source = "cputorch", optional = true } +torch = { version = "2.3.0+cpu", source = "cputorch", optional = true } keras = { version = "^3.3.3", optional = true } gymnasium = { version = "^0.29.1", optional = true } tensorboard = {version = "^2.16.2", optional = true} @@ -61,7 +67,7 @@ target-version = "py311" max-complexity = 5 [tool.ruff.lint.per-file-ignores] -"tests/**/*.py" = [ - "S101", # assertions - "D103" # function docstrings -] \ No newline at end of file +"tests/**/*.py" = ["S101", "D103"] + + +