Skip to content

Commit

Permalink
setup: Set requires-python in pyproject.toml (#1813)
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol authored Dec 29, 2023
1 parent 526aa16 commit 4a19001
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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

0 comments on commit 4a19001

Please sign in to comment.