mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-11-10 07:27:34 +00:00
Dropped variables that said we support Python 3.9 in `setup.py`, as well as any remaining references to Python 3.9. I also checked the pins and removed several that don't seem necessary any more.
15 lines
358 B
Bash
Executable File
15 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# python version must match lowest supported (3.10)
|
|
major=3
|
|
minor=10
|
|
if ! python -c "import sys; assert sys.version_info.major == $major and sys.version_info.minor == $minor"; then
|
|
echo "python version not equal to expected $major.$minor: $(python --version)"
|
|
exit 1
|
|
fi
|
|
|
|
pushd ./requirements || exit
|
|
make clean
|
|
make all
|
|
popd || exit
|