Remove CI pins and remember how basic logic works

This commit is contained in:
object-Object 2023-08-31 03:54:11 -04:00
parent a607428d1d
commit 30d2a76cf2
3 changed files with 2 additions and 9 deletions

View file

@ -48,7 +48,7 @@ jobs:
cache: pip cache: pip
- name: Install docgen from source - name: Install docgen from source
run: pip install .[ci] hatch run: pip install . hatch
- name: List book languages - name: List book languages
id: list-langs id: list-langs

View file

@ -231,7 +231,7 @@ def main(args: Args | None = None) -> None:
book=book, book=book,
props=props, props=props,
url=url, url=url,
is_bleeding_edge=version != "latest", is_bleeding_edge=version == "latest",
) )
) )

View file

@ -31,13 +31,6 @@ dev = [
"pytest>=7.3.1", "pytest>=7.3.1",
"syrupy>=4.0.2", "syrupy>=4.0.2",
] ]
ci = [
"typing_extensions==4.6.1",
"importlib_resources==6.0.1",
"pydantic==2.3.0",
"Jinja2==3.1.2",
"pyjson5==1.6.3",
]
[project.scripts] [project.scripts]
hexdoc = "hexdoc.hexdoc:main" hexdoc = "hexdoc.hexdoc:main"