Skip to content

Commit

Permalink
All tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Jul 25, 2023
1 parent d949b39 commit 1b95380
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion server/pypi/build-wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ def unpack_and_build(self):
assert_isdir(self.build_dir)
else:
ensure_empty(self.build_dir)
run(f"python{self.python} {PYPI_DIR}/create-build-env.py {build_env_dir}")
if self.python:
run(f"python{self.python} {PYPI_DIR}/create-build-env.py {build_env_dir}")
self.unpack_source()
self.apply_patches()

Expand Down
4 changes: 2 additions & 2 deletions server/pypi/packages/lameenc/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% set version = "1.4.2" %}
{% set version = "1.5.1" %}

package:
name: lameenc
# When updating, consider updating chaquopy-lame as well.
version: "{{ version }}"

source:
url: https://github.com/chrisstaite/lameenc/archive/refs/tags/v"{{ version }}".tar.gz
url: https://github.com/chrisstaite/lameenc/archive/refs/tags/v{{ version }}.tar.gz

requirements:
host:
Expand Down
2 changes: 1 addition & 1 deletion server/pypi/pkgtest/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ android {
}

ndk {
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
abiFilters "arm64-v8a", "armeabi-v7a", "x86", "x86_64"
}
}

Expand Down

0 comments on commit 1b95380

Please sign in to comment.