Skip to content

Commit e66ffda

Browse files
authored
fix: fixing the failing readthedocs build (#2634) (#2638)
Adds enough package information to pyproject.toml to allow setuptools to cope with the multiple top-level directories. FIXES: APER-3700 (cherry picked from commit 473a434)
1 parent 9850db3 commit e66ffda

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ python:
2020
install:
2121
- requirements: requirements/docs.txt
2222
- method: pip
23-
path: credentials
23+
path: .

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[project]
2+
name = "credentials"
3+
dynamic = ["version"]
4+
15
[tool.black]
26
line-length = 120
37
exclude = '(node_modules|private.py|migrations)'
@@ -11,3 +15,6 @@ lines_after_imports = 2
1115
combine_as_imports = true
1216
skip = ["migrations", "settings"]
1317
include_trailing_comma = true
18+
19+
[tool.setuptools]
20+
packages = ["credentials"]

0 commit comments

Comments
 (0)