Update pypi tag to 2.2.0.dev0 (#11895)

This commit is contained in:
Shaojun Liu 2024-08-22 16:48:09 +08:00 committed by GitHub
parent 18662dca1c
commit c5b51d41fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 11 additions and 11 deletions

View file

@ -131,7 +131,7 @@ jobs:
shell: bash shell: bash
run: | run: |
test_version_date=`date -d 'yesterday' '+%Y%m%d'` test_version_date=`date -d 'yesterday' '+%Y%m%d'`
test_version=2.1.0b$test_version_date test_version=2.2.0b$test_version_date
pip install --pre --upgrade ipex-llm[xpu]==$test_version --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/cn/ pip install --pre --upgrade ipex-llm[xpu]==$test_version --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/cn/
if ! pip show ipex-llm | grep $test_version; then if ! pip show ipex-llm | grep $test_version; then
echo "Did not install ipex-llm with excepted version $test_version" echo "Did not install ipex-llm with excepted version $test_version"
@ -400,7 +400,7 @@ jobs:
shell: bash shell: bash
run: | run: |
test_version_date=`date -d 'yesterday' '+%Y%m%d'` test_version_date=`date -d 'yesterday' '+%Y%m%d'`
test_version=2.1.0b$test_version_date test_version=2.2.0b$test_version_date
pip install --pre --upgrade ipex-llm[all]==$test_version --extra-index-url https://download.pytorch.org/whl/cpu pip install --pre --upgrade ipex-llm[all]==$test_version --extra-index-url https://download.pytorch.org/whl/cpu
if ! pip show ipex-llm | grep $test_version; then if ! pip show ipex-llm | grep $test_version; then
echo "Did not install ipex-llm with excepted version $test_version" echo "Did not install ipex-llm with excepted version $test_version"
@ -481,7 +481,7 @@ jobs:
shell: bash shell: bash
run: | run: |
test_version_date=`date -d 'yesterday' '+%Y%m%d'` test_version_date=`date -d 'yesterday' '+%Y%m%d'`
test_version=2.1.0b$test_version_date test_version=2.2.0b$test_version_date
pip install --pre --upgrade ipex-llm[all]==$test_version pip install --pre --upgrade ipex-llm[all]==$test_version
if ! pip show ipex-llm | grep $test_version; then if ! pip show ipex-llm | grep $test_version; then
echo "Did not install ipex-llm with excepted version $test_version" echo "Did not install ipex-llm with excepted version $test_version"
@ -575,7 +575,7 @@ jobs:
shell: bash shell: bash
run: | run: |
test_version_date=`date -d 'yesterday' '+%Y%m%d'` test_version_date=`date -d 'yesterday' '+%Y%m%d'`
test_version=2.1.0b$test_version_date test_version=2.2.0b$test_version_date
echo "TEST_VERSION=${test_version}" >> "$GITHUB_ENV" echo "TEST_VERSION=${test_version}" >> "$GITHUB_ENV"
- name: Install ipex-llm and other related packages (install from pypi) - name: Install ipex-llm and other related packages (install from pypi)

View file

@ -4,9 +4,9 @@ on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
version: version:
description: 'ipex-llm version (e.g. 2.1.0b1)' description: 'ipex-llm version (e.g. 2.2.0b1)'
required: true required: true
default: '2.1.0b0' default: '2.2.0b0'
type: string type: string
permissions: permissions:
@ -26,7 +26,7 @@ jobs:
- name: set release version - name: set release version
env: env:
DEFAULT_VERSION: '2.1.0b0' DEFAULT_VERSION: '2.2.0b0'
run: | run: |
echo "RELEASE_VERSION=${{ github.event.inputs.version || env.DEFAULT_VERSION }}" >> $GITHUB_ENV echo "RELEASE_VERSION=${{ github.event.inputs.version || env.DEFAULT_VERSION }}" >> $GITHUB_ENV

View file

@ -15,7 +15,7 @@ on:
required: false required: false
type: string type: string
release-version: release-version:
description: 'ipex-llm version (e.g. 2.1.0b1)' description: 'ipex-llm version (e.g. 2.2.0b1)'
required: false required: false
type: string type: string
schedule-event: schedule-event:
@ -60,7 +60,7 @@ jobs:
run: | run: |
if [[ "${{ inputs.schedule-event }}" == "true" ]]; then if [[ "${{ inputs.schedule-event }}" == "true" ]]; then
export TIMESTAMP=`date '+%Y%m%d'` export TIMESTAMP=`date '+%Y%m%d'`
export PYPI_VERSION=2.1.0 export PYPI_VERSION=2.2.0
export RELEASE_VERSION=${PYPI_VERSION}b${TIMESTAMP} export RELEASE_VERSION=${PYPI_VERSION}b${TIMESTAMP}
else else
export RELEASE_VERSION=${{ inputs.release-version }} export RELEASE_VERSION=${{ inputs.release-version }}

View file

@ -46,7 +46,7 @@ exclude_patterns = ["*__pycache__*", "*ipynb_checkpoints*"]
IPEX_LLM_PYTHON_HOME = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) IPEX_LLM_PYTHON_HOME = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
VERSION = open(os.path.join(IPEX_LLM_PYTHON_HOME, VERSION = open(os.path.join(IPEX_LLM_PYTHON_HOME,
'./llm/version.txt'), 'r').read().strip() './llm/version.txt'), 'r').read().strip()
CORE_XE_VERSION = VERSION.replace("2.1.0", "2.5.0") CORE_XE_VERSION = VERSION.replace("2.2.0", "2.5.0")
llm_home = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src") llm_home = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src")
github_artifact_dir = os.path.join(llm_home, '../llm-binary') github_artifact_dir = os.path.join(llm_home, '../llm-binary')
libs_dir = os.path.join(llm_home, "ipex_llm", "libs") libs_dir = os.path.join(llm_home, "ipex_llm", "libs")

View file

@ -1 +1 @@
2.1.0.dev0 2.2.0.dev0