Custom Python Package: Safe to do in a branch?

Continuing the discussion from :loudspeaker: New Beta: Install Any Python Package Instantly:

I’m not sure the architecture behind the scenes. Is it safe to do this in a branch of the same project? One of production application could benefit greatly by this, but I’d rather make a copy of that project if it could effect the master branch.

Hi @anthonys,

Yes, it is safe! The configuration of which runtime environment to use (and which packages to install) is stored as part of your app’s source code, which means one branch can be configured one way and one branch can be configured another way. The changes will only take effect in production when you publish the version with those changes to your production environment!

1 Like

Thank you for the quick response!