Page 1 of 1

[RESOLVED] Pyscript build upload disappeared since the update to 2.5.5

Published: June 5, 2024 - 11:14
by tux
Hello,

we migrated our environment from version 2.5.2 to version 2.5.5.
Since the migration, the `build upload` command is no longer available in the PyScripter editor when editing a package.

How can I restore it?
Is PyScripter still the preferred editor for editing packages?

Thank you in advance.

Re: Pyscript build upload disappeared since the update to 2.5.5

Published: June 5, 2024 - 11:25
by sfonteneau
The Build upload feature has been removed because importing is now done via the console for several reasons:
  • To avoid user context problems (the user profile, which is admin, is not necessarily the same as the console profile and therefore may not have the correct settings)
  • avoid having to retype the server password multiple times
  • avoid having to retype the private key password multiple times.
For these various reasons, build-upload has been removed from Python IDEs

Tip: If you drag and drop your package's working folder into the private repository, it will offer to import it.

Re: Pyscript build upload disappeared since the update to 2.5.5

Published: June 7, 2024 - 2:19 PM
by tux
Hello,

thank you for the feedback and the tip.