File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ## [ 0.28.0] - 2024/08/14
11
+
10
12
- ` pyodide xbuildenv ` subcommand is now publicly available.
11
13
[ #15 ] ( https://github.com/pyodide/pyodide-build/pull/15 )
12
14
Original file line number Diff line number Diff line change @@ -731,11 +731,7 @@ def generate_packagedata(
731
731
732
732
pkg_type = pkg .package_type
733
733
if pkg_type == "shared_library" :
734
- # We handle cpython modules as shared libraries
735
- pkg_entry .shared_library = True
736
- pkg_entry .install_dir = (
737
- "stdlib" if pkg_type == "cpython_module" else "dynlib"
738
- )
734
+ pkg_entry .install_dir = "dynlib"
739
735
740
736
pkg_entry .depends = [x .lower () for x in pkg .run_dependencies ]
741
737
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ requires-python = ">=3.12"
16
16
dependencies = [
17
17
" build~=1.2.0" ,
18
18
" pyodide-cli~=0.2.1" ,
19
- " pyodide-lock==0.1.0a6 " ,
19
+ " pyodide-lock==0.1.0a7 " ,
20
20
" auditwheel-emscripten~=0.0.9" ,
21
21
" pydantic>=2,<3" ,
22
22
" cmake>=3.24" ,
You can’t perform that action at this time.
0 commit comments