Skip to content

Commit 1c482c4

Browse files
committed
fix(config): fix invalid readme reference in pyproject.toml
Not sure where the original `README-PYPI.md` file came from, maybe a bug in initial generation? Without these changes, we get the following error: ``` 🚀 ❯ poetry install Installing dependencies from lock file No dependencies to install or update Installing the current project: glean-api-client (0.5.2) Error: The current project could not be installed: Readme path `/Users/rwjblue/src/github/gleanwork/api-client-python/README-PYPI.md` does not exist. If you do not want to install the current project use --no-root. If you want to use Poetry only for dependency management but not for packaging, you can disable package mode by setting package-mode = false in your pyproject.toml file. If you did intend to install the current project, you may need to set `packages` in your pyproject.toml file. ```
1 parent 57edf6a commit 1c482c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.5.2"
44
description = "Python Client SDK Generated by Speakeasy."
55
authors = [{ name = "Glean Technologies, Inc." }]
66
license = "MIT"
7-
readme = "README-PYPI.md"
7+
readme = "README.md"
88
requires-python = ">=3.9"
99
dependencies = ["httpx >=0.28.1", "pydantic >=2.11.2"]
1010

0 commit comments

Comments
 (0)