Skip to content
Open
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: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
Expand All @@ -37,7 +38,7 @@ readme = "README.md"
# ``setup.py::_load_requires_python_spec()`` to gate cp-wheel vs universal
# fallback. Keep in sync with ``[project].classifiers`` below and the install
# docs (``docs/source/install.rst``, ``CONTRIBUTING.md``).
requires-python = ">=3.11,<3.14"
requires-python = ">=3.10,<3.14"

[project.urls]
documentation = "https://quark.docs.amd.com"
Expand Down
4 changes: 3 additions & 1 deletion quark/contrib/llm_eval/experiment_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
import os
import sys
from argparse import Namespace
from datetime import UTC, datetime
from datetime import datetime, timezone

UTC = timezone.utc
from typing import Any

import numpy as np
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#

import math
from typing import Any, Self
from typing import Any
from typing_extensions import Self

import numpy as np
import torch
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,5 +554,5 @@ def get_version(is_nightly=False, is_release=False):
cmdclass=cmdclass,
install_requires=install_requires,
# Keep in sync with ``pyproject.toml::[project].requires-python``.
python_requires=">=3.11,<3.14",
python_requires=">=3.10,<3.14",
)