Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup: Set requires-python in pyproject.toml #1813

Merged
merged 3 commits into from
Dec 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[project]
requires-python = "~=3.11.6"

[tool.towncrier]
package = "ai.backend.manager" # reference point for getting __version__
filename = "CHANGELOG.md"
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/client/cli/session/lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import uuid
from collections import OrderedDict, defaultdict
from datetime import datetime, timedelta
from graphlib import TopologicalSorter
from pathlib import Path
from typing import IO, List, Literal, Optional, Sequence

Expand All @@ -18,7 +19,6 @@
from dateutil.parser import isoparse
from dateutil.tz import tzutc
from faker import Faker
from graphlib import TopologicalSorter
from humanize import naturalsize
from tabulate import tabulate

Expand Down
Loading