caturday — cat with a hot pink tongue

Luke likes to pretend he’s all majestic, what with him being the self proclaimed alpha male (by two hours birth before Bo). Most of the time Luke gets away with it. But if I’m carefully paying attention and have my camera, I can grab photos of Luke behaving like the silly cat I know he is deep down inside. In this instance he was licking his chops when he spotted an Anole lizard that had the bad luck to have found its way into the screened-in area full of cats. Fortunately for the Anole, after taking this photo I trapped the little Anole and put him outside and out of harms way. I try to rescue the Anoles not so much out of kindness towards the Anoles, but because I get tired of cleaning up dead Anole guts off the kitchen floor at night. With six cats in this household cleaning up dead Anole guts can be a bit of a chore.

This photo was taken with the Lumix G9.2 and the M.Zuiko 1.8/75mm. The Lumix was set to its internal 709 color balance, which I am finding much more to my liking than any other pre-programmed color balance within the Lumix. I also like the fact that this camera has a base ISO of 100, of which this particular photo was at 125. I’m certainly not some globe-trotting professional photographer, but after having used the G9.2 for well over a month I can say how pleased I am with its operation and its output. Quite pleased indeed.

building python 3.13.0 beta 2 on linux mint 21.3

Python 3.13.0 Beta 2 was released Thursday 6 June by the Python Foundation (see link to announcement below). I downloaded the sources and built it. Here’s what I did to set up a build environment for this beta release and the features I selected to build this beta.

Install Build Prerequisites

You need to install the following packages in order to build every module in Python. There is one additional package dependency that Python 3.13 will need to build, and it’s libmpdec-dev. Every other Python version prior to 3.13 did not need this package installed.

sudo apt install zlib1g-dev \libncurses5-dev \libgdbm-dev \libnss3-dev \libssl-dev \libreadline-dev \libffi-dev \libsqlite3-dev \libbz2-dev \tk \tk-dev \liblzma-dev \libgdbm-compat-dev \libmpdec-dev

Build And Install Python 3.13.0 Beta 2

  • Download the latest beta Python version from https://www.python.org/downloads/release/python-3130b2/
  • Untar the file into a work folder of your choice.
  • Make a build directory at the same level as the untarred source directory.
  • From within the build directory execute the configure script. In this example we’re building Python 3.13.0b2.
    ../Python-3.13.0b2/configure --enable-optimizations --disable-gil
    Note that we are disabling the GIL with this build, which gives us an experimental free-threaded build.
  • Within the build directory run make.
  • Install into the alternate location for this version of Python:
    sudo -H make altinstall
  • Check for the alternate location with which python3.13 . It should return /usr/local/bin/python3.13 .

Create A Virtual Work Environment

  • In your home directory create a work folder. On my system I named it ‘VPython’, but you can call it whatever you want.
  • Change directory into it, then create a Python virtual environment using, as an example, python3.13 -m venv 313.
  • There is a bin directory in the virtual directory you created, which in this example was 313. Start the environment with source 313/bin/activate .

I created an alias so that typing 313 in any shell starts the environment. The alias should source the full path and the script in the virtual environment’s bin directory. When active, typing deactivate drops you back to a regular shell environment. See the following screen capture.

Python 3.13 beta 2

The biggest change this beta release is the disabled GIL, or Global Interpreter Lock. The biggest reason for removing the GIL is performance, especially when attempting concurrent processing. We shall see.

Announcement

Python 3.13.0 beta 2 released — https://pythoninsider.blogspot.com/2024/06/python-3130-beta-2-released.html