2023-06-16 18:52:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-07-27 20:13:59 +00:00
|
|
|
version_compare() {
|
|
|
|
local v1=(${1//./ })
|
|
|
|
local v2=(${2//./ })
|
|
|
|
for i in {0..2}; do
|
|
|
|
if (( ${v1[i]} < ${v2[i]} )); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
openssl_version=$(openssl version | awk '{print $2}')
|
|
|
|
required_openssl_version="1.1.1"
|
|
|
|
|
|
|
|
python_version=$(python3 --version 2>&1 | awk '{print $2}')
|
|
|
|
required_python_version="3.10"
|
|
|
|
|
|
|
|
echo "OpenSSL Version"
|
|
|
|
echo $openssl_version
|
|
|
|
echo "Python Version"
|
|
|
|
echo $python_version
|
|
|
|
# If openssl version is less than 1.1.1 AND python version is less than 3.10
|
|
|
|
if ! version_compare $openssl_version $required_openssl_version && ! version_compare $python_version $required_python_version; then
|
2023-07-26 19:38:58 +00:00
|
|
|
### See: https://github.com/urllib3/urllib3/issues/2168
|
|
|
|
# Requests lib breaks for old SSL versions,
|
|
|
|
# which are defaults on Amazon Linux 2 (which Vercel uses for builds)
|
2023-07-27 20:13:59 +00:00
|
|
|
yum -y update
|
|
|
|
yum remove openssl-devel -y
|
|
|
|
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar -y
|
|
|
|
yum install openssl11 -y
|
|
|
|
yum install openssl11-devel -y
|
|
|
|
|
|
|
|
wget https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz
|
|
|
|
tar xzf Python-3.11.4.tgz
|
|
|
|
cd Python-3.11.4
|
|
|
|
./configure
|
|
|
|
make altinstall
|
|
|
|
echo "Python Version"
|
|
|
|
python3.11 --version
|
|
|
|
cd ..
|
|
|
|
fi
|
2023-07-26 19:38:58 +00:00
|
|
|
|
|
|
|
python3.11 -m venv .venv
|
2023-06-16 18:52:56 +00:00
|
|
|
source .venv/bin/activate
|
2023-07-26 19:38:58 +00:00
|
|
|
python3.11 -m pip install --upgrade pip
|
|
|
|
python3.11 -m pip install -r vercel_requirements.txt
|
2023-10-06 17:09:41 +00:00
|
|
|
python3.11 scripts/model_feat_table.py
|
2023-10-10 19:55:19 +00:00
|
|
|
nbdoc_build --srcdir docs
|
2023-10-19 21:05:24 +00:00
|
|
|
cp ../cookbook/README.md src/pages/cookbook.mdx
|
2023-10-25 19:28:43 +00:00
|
|
|
cp ../.github/CONTRIBUTING.md docs/contributing.md
|
2023-11-06 15:07:25 +00:00
|
|
|
wget https://raw.githubusercontent.com/langchain-ai/langserve/main/README.md -O docs/langserve.md
|
2023-10-10 19:55:19 +00:00
|
|
|
python3.11 scripts/generate_api_reference_links.py
|