Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(wheel): attempt to fix some issues found in 3.1.0rc1 build #2040

Merged
merged 1 commit into from Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/create-wheels.yaml
Expand Up @@ -124,7 +124,8 @@ jobs:
env:
py_tag: ${{ matrix.python-version }}
run: |
version="${py_tag: 2:1}.${py_tag: 3:1}"
platform=${py_tag%%-*}
version=${platform:2:1}.${platform:3:3}
echo $version
echo "::set-output name=python-version::$version"

Expand Down
8 changes: 4 additions & 4 deletions requirements/tests
Expand Up @@ -20,8 +20,8 @@ msgpack
mujson
ujson

# it's slow to compile on emulated architectures
python-rapidjson; platform_machine != 's390x' and platform_machine != 'aarch64'
# it's slow to compile on emulated architectures; wheels missing for some EoL interpreters
python-rapidjson; python_version >= '3.7' and platform_machine != 's390x' and platform_machine != 'aarch64'

# python_version >= '3.6': arm64 wheels are missing for py35
orjson; python_version >= '3.6' and platform_python_implementation != 'PyPy' and platform_machine != 's390x'
# wheels are missing some EoL interpreters and non-x86 platforms; build would fail unless rust is available
orjson; python_version >= '3.7' and platform_python_implementation != 'PyPy' and platform_machine != 's390x' and platform_machine != 'aarch64'