mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
Use Python 3.12 for internal code (#2222)
* Use Python 3.12 for internal code * Add changelog entry
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
from dataclasses import dataclass, field
|
||||
from typing import Optional
|
||||
|
||||
from tagging.manifests import (
|
||||
AptPackagesManifest,
|
||||
@@ -32,7 +31,7 @@ from tagging.taggers import (
|
||||
|
||||
@dataclass
|
||||
class ImageDescription:
|
||||
parent_image: Optional[str]
|
||||
parent_image: str | None
|
||||
taggers: list[TaggerInterface] = field(default_factory=list)
|
||||
manifests: list[ManifestInterface] = field(default_factory=list)
|
||||
|
||||
|
Reference in New Issue
Block a user