mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 23:12:56 +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:
@@ -27,7 +27,7 @@ import logging
|
||||
import re
|
||||
from collections import defaultdict
|
||||
from itertools import chain
|
||||
from typing import Any, Optional
|
||||
from typing import Any
|
||||
|
||||
from docker.models.containers import Container
|
||||
from tabulate import tabulate
|
||||
@@ -44,9 +44,9 @@ class CondaPackageHelper:
|
||||
self.running_container: Container = CondaPackageHelper.start_container(
|
||||
container
|
||||
)
|
||||
self.requested: Optional[dict[str, set[str]]] = None
|
||||
self.installed: Optional[dict[str, set[str]]] = None
|
||||
self.available: Optional[dict[str, set[str]]] = None
|
||||
self.requested: dict[str, set[str]] | None = None
|
||||
self.installed: dict[str, set[str]] | None = None
|
||||
self.available: dict[str, set[str]] | None = None
|
||||
self.comparison: list[dict[str, str]] = []
|
||||
|
||||
@staticmethod
|
||||
|
Reference in New Issue
Block a user