Skip to content

Commit

Permalink
Added more info to the project file
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Farris committed May 15, 2024
1 parent 290f8b3 commit 66310c8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: |
echo "Publishing release v$(task version)"
gh release create v$(task version) --repo ${REPO_NAME} --title v$(task version) --generate-notes
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
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"
Expand All @@ -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}
Expand Down Expand Up @@ -61,7 +67,7 @@ target-version = "py311"
max-complexity = 5

[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"S101", # assertions
"D103" # function docstrings
]
"tests/**/*.py" = ["S101", "D103"]



0 comments on commit 66310c8

Please sign in to comment.