Skip to content

Commit

Permalink
ci(py-sdk): fix python package names (#1486)
Browse files Browse the repository at this point in the history
* ci (py-sdk): fix python package names

Python package names are not allowed to contain '-', which is a syntax
error. Replace with '_'.

* Update python-config.json

* Update python-pydantic-v1-config.json

---------

Co-authored-by: Jay <[email protected]>
  • Loading branch information
cchndl and Junjiequan authored Nov 7, 2024
1 parent fc7a136 commit 8e26958
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/openapi/python-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"generatorName": "python",
"packageName": "scicat-sdk-py",
"projectName": "scicat-sdk-py"
"packageName": "scicat_sdk_py",
"projectName": "scicat_sdk_py"
}
4 changes: 2 additions & 2 deletions .github/openapi/python-pydantic-v1-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"generatorName": "python-pydantic-v1",
"packageName": "scicat-sdk-pydantic",
"projectName": "scicat-sdk-pydantic"
"packageName": "scicat_sdk_pydantic",
"projectName": "scicat_sdk_pydantic"
}

0 comments on commit 8e26958

Please sign in to comment.