You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes: Do not skip hidden files and .dist-info directories (#174)
* Fix: hidden files in site-packages are skipped when building macOS app
Fixflet-dev/flet#5204 (comment)
* Fix tests
* Fix tests, again
* Remove .dist-info from junk files
* Update changelogs to note .dist-info metadata fix
Added a changelog entry for all platforms documenting the fix that prevents deletion of package metadata in `.dist-info` directories, addressing issue #164.
* Bump Flutter to 3.35.1, fix package command
* Set default assetPath if null in package command
Assigns 'app/app.zip' as the default assetPath when none is provided, ensuring a valid path is always set. Also refactors the logic for handling leading slashes in assetPath.
* Rollback Flet version
* Remove hideLoadingPage from FletApp and update dependencies
The hideLoadingPage property was removed from FletApp instantiations in main.dart to align with recent API changes. Updated pubspec.lock files for flask_example, flet_example, and run_example to reflect new package versions and dependency updates.
* Remove --pre flag from test scripts in Appveyor config
Eliminated the '--pre' flag from all 'dart run serious_python:main' commands in the .appveyor.yml file for multiple platforms. This streamlines the test scripts and may resolve issues related to pre-release package handling.
* Remove redundant '-r' flag from test scripts
Cleaned up .appveyor.yml by removing duplicate '-r' flags from dart run commands in test_script sections for all platforms. This simplifies the test execution commands and avoids potential confusion.
* Update Pyodide CDN URL to v0.28.3
Changed the pyodideRootUrl constant to use Pyodide version 0.28.3 instead of 0.27.2 for updated package support.
* Update Pyodide platform tag to 2025.0
Changed the Pyodide platform tag from 'pyodide-2024.0-wasm32' to 'pyodide-2025.0-wasm32' to reflect the new version.
* Revert "Update Pyodide platform tag to 2025.0"
This reverts commit 8e7b5b7.
* Update Pyodide CDN URL to v0.27.7
Changed the pyodideRootUrl constant to point to Pyodide version 0.27.7 instead of 0.28.3 for compatibility or stability reasons.
Copy file name to clipboardExpand all lines: src/serious_python/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
## 0.9.3
2
+
3
+
* Fix: Hidden files in site-packages are skipped when building macOS app.
4
+
* Fix: Do not delete package metadata in `.dist-info` directories ([#164](https://github.com/flet-dev/serious-python/issues/164)).
5
+
1
6
## 0.9.2
2
7
3
8
* Breaking change: multiple `--requirements` options of `package` command must be passed as `--requirements DEP_1 --requirements DEP_2 ...` (or `-r DEP_1 -r DEP_2 ...`) instead of `-r DEP_1,DEP_2,...` to support dependency specifications with commas, e.g. `pandas>=2.2,<3`.
0 commit comments