Skip to content

Commit

Permalink
Fix incorrect python_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
miloserdova-l authored and anastasiia-kornilova committed Apr 20, 2021
1 parent afc9ef3 commit df023f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions scripts/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
set -euo pipefail
export LC_ALL=C

LATEST=""

cd $(dirname $(readlink -f "${BASH_SOURCE[0]}"))
cd ../
#Early check for build tools
chrpath --version && cmake --version

mkdir ./build
mkdir ./dist
mkdir ./mrob
cd $(dirname $(readlink -f "${BASH_SOURCE[0]}"))/..
mkdir -p ./build ./dist ./mrob

cp ./__init__.py ./mrob/__init__.py

cd ./build

NUMPROC=$(grep -Ec '^processor\s+:' /proc/cpuinfo)
echo "Running $NUMPROC parallel jobs"

LATEST=""

for PYBIN in /opt/python/cp3*/bin/
do
Expand All @@ -46,7 +46,7 @@ do
cmake .. -DPYTHON_EXECUTABLE:FILEPATH=${PYBIN}python3
make -j $NUMPROC

mv ../lib/* ../mrob
mv --verbose ../lib/* ../mrob
done

chrpath -r '$ORIGIN' ../mrob/mrob.*.so
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ license_files = LICENSE
[options]
zip_safe = false
include_package_data = true
python_requires = >= 3.*
python_requires = >= 3.5
packages = find:

[options.package_data]
Expand Down

0 comments on commit df023f5

Please sign in to comment.