File tree Expand file tree Collapse file tree 4 files changed +12
-1
lines changed
Expand file tree Collapse file tree 4 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ # Copyright (c) 2023 Microsoft
2+ # Licensed under The MIT License [see LICENSE for details]
13# flake8: noqa
24from .prompt_compressor import PromptCompressor
35from .version import VERSION as __version__
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2023 Microsoft
2+ # Licensed under The MIT License [see LICENSE for details]
3+
14import bisect
25from collections import defaultdict
36from typing import List
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2023 Microsoft
2+ # Licensed under The MIT License [see LICENSE for details]
3+
14_MAJOR = "0"
25_MINOR = "1"
36# On master and in a nightly release the patch should be one ahead of the last
47# released build.
5- _PATCH = "4 "
8+ _PATCH = "5 "
69# This is mainly for nightly builds which have the suffix ".dev$DATE". See
710# https://semver.org/#is-v123-a-semantic-version for the semantics.
811_SUFFIX = ""
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2023 Microsoft
2+ # Licensed under The MIT License [see LICENSE for details]
3+
14from setuptools import find_packages , setup
25
36# PEP0440 compatible formatted version, see:
You can’t perform that action at this time.
0 commit comments