mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
Update local script for docs build (#8377)
This commit is contained in:
parent
f5bf893035
commit
41524304bf
@ -13,5 +13,6 @@ cp -r {docs_skeleton,snippets} _dist
|
|||||||
cp -r extras/* _dist/docs_skeleton/docs
|
cp -r extras/* _dist/docs_skeleton/docs
|
||||||
cd _dist/docs_skeleton
|
cd _dist/docs_skeleton
|
||||||
poetry run nbdoc_build
|
poetry run nbdoc_build
|
||||||
|
poetry run python generate_api_reference_links.py
|
||||||
yarn install
|
yarn install
|
||||||
yarn start
|
yarn start
|
||||||
|
@ -59,6 +59,7 @@ def main():
|
|||||||
global_imports[class_name][doc_title] = doc_url
|
global_imports[class_name][doc_title] = doc_url
|
||||||
|
|
||||||
# Write the global imports information to a JSON file
|
# Write the global imports information to a JSON file
|
||||||
|
_JSON_PATH.parent.mkdir(parents=True, exist_ok=True)
|
||||||
with _JSON_PATH.open("w") as f:
|
with _JSON_PATH.open("w") as f:
|
||||||
json.dump(global_imports, f)
|
json.dump(global_imports, f)
|
||||||
|
|
||||||
|
@ -1,26 +1,47 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
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
|
||||||
### See: https://github.com/urllib3/urllib3/issues/2168
|
### See: https://github.com/urllib3/urllib3/issues/2168
|
||||||
# Requests lib breaks for old SSL versions,
|
# Requests lib breaks for old SSL versions,
|
||||||
# which are defaults on Amazon Linux 2 (which Vercel uses for builds)
|
# which are defaults on Amazon Linux 2 (which Vercel uses for builds)
|
||||||
yum -y update
|
yum -y update
|
||||||
yum remove openssl-devel -y
|
yum remove openssl-devel -y
|
||||||
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar -y
|
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar -y
|
||||||
yum install openssl11 -y
|
yum install openssl11 -y
|
||||||
yum install openssl11-devel -y
|
yum install openssl11-devel -y
|
||||||
# Install python 3.11 to connect with openSSL 1.1.1
|
|
||||||
wget https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz
|
wget https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz
|
||||||
tar xzf Python-3.11.4.tgz
|
tar xzf Python-3.11.4.tgz
|
||||||
cd Python-3.11.4
|
cd Python-3.11.4
|
||||||
./configure
|
./configure
|
||||||
make altinstall
|
make altinstall
|
||||||
# Check python version
|
echo "Python Version"
|
||||||
echo "Python Version"
|
python3.11 --version
|
||||||
python3.11 --version
|
cd ..
|
||||||
cd ..
|
fi
|
||||||
###
|
|
||||||
|
|
||||||
# Install nbdev and generate docs
|
|
||||||
cd ..
|
cd ..
|
||||||
python3.11 -m venv .venv
|
python3.11 -m venv .venv
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
|
Loading…
Reference in New Issue
Block a user