omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Pythonista 3.4 is out!

    Pythonista
    18
    61
    1660
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • omz
      omz last edited by

      Title says it all, I've finally managed to get the new version through app review, so the new features (Python 3.10, Shortcuts, pandas...) are now available to everyone.

      Here are the release notes for 3.4.

      SKBarbon wolf71 ForceBru RHH mpvano 7 Replies Last reply Reply Quote 6
      • SKBarbon
        SKBarbon @omz last edited by

        @omz Lets gooooo !!!

        1 Reply Last reply Reply Quote 0
        • Olaf
          Olaf last edited by

          Great, congrats on the milestone @omz !

          1 Reply Last reply Reply Quote 0
          • ccc
            ccc last edited by

            Bells are ringing and there is celebration throughout the land!! Congratulations Ole!! Long live Pythonista!!

            1 Reply Last reply Reply Quote 2
            • wolf71
              wolf71 @omz last edited by

              @omz
              keyboard shortcut error:

              1. shift+tab not work.
              2. cmd+/ not work.
              1 Reply Last reply Reply Quote 0
              • ForceBru
                ForceBru @omz last edited by ForceBru

                @omz, the app crashes on launch on iOS 12.4, unfortunately.

                Crash log: https://pastebin.com/HvEnBhc7

                omz 1 Reply Last reply Reply Quote 0
                • RHH
                  RHH @omz last edited by

                  This post is deleted!
                  RHH 1 Reply Last reply Reply Quote 0
                  • LankyDonkey
                    LankyDonkey last edited by

                    Sorry to be negative but all my apps have started since this morning. I didnt realise anything had changed until I saw that a new update had been released. Could you please help me figure out what is going on as I love Pythonista and have written several apps that I use everyday. However now after a minute or 2 of using the app the whole of pythonista crashes. I have been running the apps for over 2 years and I have never seen this happen before.

                    Thank you

                    LankyDonkey 1 Reply Last reply Reply Quote 0
                    • LankyDonkey
                      LankyDonkey @LankyDonkey last edited by

                      @LankyDonkey I am on ios 16.4.1

                      bosco 1 Reply Last reply Reply Quote 0
                      • omz
                        omz @ForceBru last edited by

                        @ForceBru Thanks for the crash log. Unfortunately, it has become pretty difficult to test on iOS 12, and apparently no one in the beta was still using it, so it slipped through. Sorry about this! I'll look into it.

                        ForceBru 1 Reply Last reply Reply Quote 0
                        • RHH
                          RHH @RHH last edited by

                          This post is deleted!
                          1 Reply Last reply Reply Quote 0
                          • bosco
                            bosco @LankyDonkey last edited by

                            @LankyDonkey Issues after upgrading are often caused by modules in site-packages-3 or site-packages. Modules like requests or dropbox have been updated in the built-in site-packages and can be deleted from user site-packages. I would start with deleting all modules in site-packages-3 if you have any. If you use stash, there are other threads in this forum with instructions for installing the dev version that works with Pythonista 3.4

                            LankyDonkey 1 Reply Last reply Reply Quote 0
                            • ForceBru
                              ForceBru @omz last edited by

                              @omz, please, please look into it, I can't lose my daily driver... Unfortunately, I couldn't get into the beta since it's full. Which is understandable, because Pythonista is still, in 2023, the absolute best Python IDE for iOS. 20/10, would buy again and recommend to more people. Let me know if I can help resolve this in any way!

                              ccc 1 Reply Last reply Reply Quote 0
                              • mpvano
                                mpvano @omz last edited by

                                Great Job! So far the transition has been seamless, with my earlier scripts running just fine!

                                Thanks for doing this (again).

                                Is there a place we can use Paypal to show our gratitude? You deserve some new income from those of us who are not new purchasers!

                                M

                                1 Reply Last reply Reply Quote 3
                                • bigTanuki
                                  bigTanuki @omz last edited by

                                  @omz So happy about this. Just 5star reviewed the update!

                                  1 Reply Last reply Reply Quote 0
                                  • R
                                    random_soul last edited by

                                    @omz, thank you so much for the update, using it for years, and love this app so much!

                                    Last night I been trying to use the datepicker,
                                    realise it has changed to the new style! Is there any way to continue using the old date picker which uses a scroll wheel!
                                    I been trying for the whole night, but got no clue!
                                    I am not pro at programming, so may lake of some basics!
                                    could you tell how to do this, appreciated,
                                    Many thanks!

                                    cvp 1 Reply Last reply Reply Quote 0
                                    • cvp
                                      cvp @random_soul last edited by cvp

                                      @random_soul please, try this

                                      import ui
                                      from  objc_util import ObjCInstance
                                      
                                      v = ui.View()
                                      v.background_color = 'white'
                                      dp = ui.DatePicker()
                                      
                                      objc = ObjCInstance(dp)
                                      
                                      @on_main_thread
                                      def setWheel():
                                      	objc.setPreferredDatePickerStyle_(1)
                                      setWheel()
                                      
                                      v.add_subview(dp)
                                      v.present()
                                      

                                      alt text

                                      Note that Apple doc says this PreferredDatePickerStyle should be 3 for wheel but it only works with 1 and don't ask me why.

                                      Styles
                                      case automatic
                                      A style indicating that the system picks the concrete style based on the current platform and date picker mode.
                                      case compact
                                      A style indicating that the date picker displays as a label that when tapped displays a calendar-style editor.
                                      case inline
                                      A style indicating that the date pickers displays as an inline, editable field.
                                      case wheels
                                      A style indicating that the date picker displays as a wheel picker
                                      
                                      R 1 Reply Last reply Reply Quote 2
                                      • R
                                        random_soul @cvp last edited by

                                        @cvp
                                        it worked! Yes! Thank you!
                                        This really helps!
                                        I wrote an app in which uses the datepicker,
                                        and been use the app almost 3 years,
                                        The change affected my way of using the app,
                                        finally I got my old routine back!
                                        Many thanks, and wish you best! (^_^)v

                                        cvp 1 Reply Last reply Reply Quote 0
                                        • cvp
                                          cvp @random_soul last edited by

                                          @random_soul Thank you and hoping that none of your scripts crashes with V3.4

                                          R 1 Reply Last reply Reply Quote 0
                                          • R
                                            random_soul @cvp last edited by

                                            @cvp
                                            thanks and best! (^_^) Thumbs Up!

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors