Skip to content

Commit

Permalink
chore: fix the dynamic extra dependencies (#591)
Browse files Browse the repository at this point in the history
* chore: fix the dynamic extra dependencies

Signed-off-by: Keming <[email protected]>

* run ci check if pyproject changed

Signed-off-by: Keming <[email protected]>

---------

Signed-off-by: Keming <[email protected]>
  • Loading branch information
kemingy authored Oct 31, 2024
1 parent 8a0f4e7 commit aee2f24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- 'tests/**'
- 'examples/**'
- 'setup.py'
- 'pyproject.toml'
- 'Cargo.lock'
- 'Cargo.toml'
- 'requirements/**'
Expand All @@ -22,6 +23,9 @@ on:
- 'tests/**'
- 'examples/**'
- 'setup.py'
- 'pyproject.toml'
- 'Cargo.lock'
- 'Cargo.toml'
- 'requirements/**'
merge_group:

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
]
license = {text = "Apache-2.0"}
keywords = ["machine learning", "deep learning", "model serving"]
dynamic = ["version"]
dynamic = ["version", "optional-dependencies"]
requires-python = ">=3.8"
dependencies = []
classifiers = [
Expand Down Expand Up @@ -44,8 +44,6 @@ before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s
environment = { PRODUCTION_MODE="yes", PATH="$PATH:$HOME/.cargo/bin", PIP_NO_CLEAN="yes" }
before-build = "git status" # help to debug what happened to the setuptools_scm (file changes)

[project.optional-dependencies]

[project.scripts]

[build-system]
Expand Down

0 comments on commit aee2f24

Please sign in to comment.