File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ def build_container(session: Session) -> None:
193193 session .log (f"Container image { project_image_name } :latest built locally." )
194194
195195
196- @nox .session (python = None , name = "setup-release" , tags = [RELEASE ])
196+ @nox .session (python = False , name = "setup-release" , tags = [RELEASE ])
197197def setup_release (session : Session ) -> None :
198198 """Prepares a release by creating a release branch and bumping the version.
199199
@@ -208,6 +208,8 @@ def setup_release(session: Session) -> None:
208208def get_release_notes (session : Session ) -> None :
209209 """Gets the latest release notes if between bumping the version and tagging the release."""
210210 session .log ("Getting release notes..." )
211+ session .install ("-e" , "." , "--group" , "dev" )
212+ session .install ("typing_extensions" )
211213 session .run ("python" , SCRIPTS_FOLDER / "get-release-notes.py" , external = True )
212214
213215
Original file line number Diff line number Diff line change 33import argparse
44import stat
55import subprocess
6+ import sys
67from pathlib import Path
78from typing import Any
89from typing import Callable
910from typing import Literal
1011from typing import Optional
12+ print (sys .version_info )
13+ print (sys .executable )
1114from typing_extensions import TypeAlias
1215
1316
You can’t perform that action at this time.
0 commit comments