Skip to content

Commit c5b51d4

Browse files
authored
Update pypi tag to 2.2.0.dev0 (#11895)
1 parent 18662dc commit c5b51d4

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/llm_performance_tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
shell: bash
132132
run: |
133133
test_version_date=`date -d 'yesterday' '+%Y%m%d'`
134-
test_version=2.1.0b$test_version_date
134+
test_version=2.2.0b$test_version_date
135135
pip install --pre --upgrade ipex-llm[xpu]==$test_version --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/cn/
136136
if ! pip show ipex-llm | grep $test_version; then
137137
echo "Did not install ipex-llm with excepted version $test_version"
@@ -400,7 +400,7 @@ jobs:
400400
shell: bash
401401
run: |
402402
test_version_date=`date -d 'yesterday' '+%Y%m%d'`
403-
test_version=2.1.0b$test_version_date
403+
test_version=2.2.0b$test_version_date
404404
pip install --pre --upgrade ipex-llm[all]==$test_version --extra-index-url https://download.pytorch.org/whl/cpu
405405
if ! pip show ipex-llm | grep $test_version; then
406406
echo "Did not install ipex-llm with excepted version $test_version"
@@ -481,7 +481,7 @@ jobs:
481481
shell: bash
482482
run: |
483483
test_version_date=`date -d 'yesterday' '+%Y%m%d'`
484-
test_version=2.1.0b$test_version_date
484+
test_version=2.2.0b$test_version_date
485485
pip install --pre --upgrade ipex-llm[all]==$test_version
486486
if ! pip show ipex-llm | grep $test_version; then
487487
echo "Did not install ipex-llm with excepted version $test_version"
@@ -575,7 +575,7 @@ jobs:
575575
shell: bash
576576
run: |
577577
test_version_date=`date -d 'yesterday' '+%Y%m%d'`
578-
test_version=2.1.0b$test_version_date
578+
test_version=2.2.0b$test_version_date
579579
echo "TEST_VERSION=${test_version}" >> "$GITHUB_ENV"
580580
581581
- name: Install ipex-llm and other related packages (install from pypi)

.github/workflows/release-ipex-llm.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
workflow_dispatch:
55
inputs:
66
version:
7-
description: 'ipex-llm version (e.g. 2.1.0b1)'
7+
description: 'ipex-llm version (e.g. 2.2.0b1)'
88
required: true
9-
default: '2.1.0b0'
9+
default: '2.2.0b0'
1010
type: string
1111

1212
permissions:
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: set release version
2828
env:
29-
DEFAULT_VERSION: '2.1.0b0'
29+
DEFAULT_VERSION: '2.2.0b0'
3030
run: |
3131
echo "RELEASE_VERSION=${{ github.event.inputs.version || env.DEFAULT_VERSION }}" >> $GITHUB_ENV
3232

.github/workflows/release-pypi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
required: false
1616
type: string
1717
release-version:
18-
description: 'ipex-llm version (e.g. 2.1.0b1)'
18+
description: 'ipex-llm version (e.g. 2.2.0b1)'
1919
required: false
2020
type: string
2121
schedule-event:
@@ -60,7 +60,7 @@ jobs:
6060
run: |
6161
if [[ "${{ inputs.schedule-event }}" == "true" ]]; then
6262
export TIMESTAMP=`date '+%Y%m%d'`
63-
export PYPI_VERSION=2.1.0
63+
export PYPI_VERSION=2.2.0
6464
export RELEASE_VERSION=${PYPI_VERSION}b${TIMESTAMP}
6565
else
6666
export RELEASE_VERSION=${{ inputs.release-version }}

python/llm/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
IPEX_LLM_PYTHON_HOME = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
4747
VERSION = open(os.path.join(IPEX_LLM_PYTHON_HOME,
4848
'./llm/version.txt'), 'r').read().strip()
49-
CORE_XE_VERSION = VERSION.replace("2.1.0", "2.5.0")
49+
CORE_XE_VERSION = VERSION.replace("2.2.0", "2.5.0")
5050
llm_home = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src")
5151
github_artifact_dir = os.path.join(llm_home, '../llm-binary')
5252
libs_dir = os.path.join(llm_home, "ipex_llm", "libs")

python/llm/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0.dev0
1+
2.2.0.dev0

0 commit comments

Comments
 (0)