#python312

Seve_py :vim: :python:seve_py@fosstodon.org
2025-05-27

Python has been updated to version 3.12! 🎉 Explore the latest features and improvements. 🐍✨ #Python312 #Programming #Coding #jupyterlite
pin.it/XIHkkO0bd via @pinterest

halil denizhalildeniz
2024-12-17

Hello everyone.
In today's article we are reviewing the released 2024.4 version of Kali Linux.

I wish everyone good reading and work.
denizhalil.com/2024/12/17/kali

2024-10-13

Neden indirdiğim Python kodlarının çoğu çalışmıyor?!

Py5 modülü istedi onu da ekledim, ama hâlâ çalışmıyor!

Ben daha öğrenmeye çalışan bir python öğrencisiyim, neden her şeyi zorlaştırıyorsunuz?

Üstelik İngilizce de bilmiyorum ve bâzan bir ilkokul öğrencisinin bile kolayca anlayabileceği tavsiye ve cevapları anlayamayabiliyorum!

mastodon.online/@villares@pyne

#python #python312 #python313 #py5

Hugo van Kemenadehugovk
2024-10-01

Special limited edition RC3 of Python 3.13.0 is now out! Please test it so we can release the proper one next week! 🤞

As a thank you, have a Python 3.12.7!

discuss.python.org/t/python-3-

Hugo van Kemenadehugovk
2024-09-07

🐍2️⃣🚀 The **final** release candidate of Python 3.13 is out!

➡️ Library maintainers, please upload wheels to PyPI **now**, especially if you have compiled extensions (there are no more ABI changes), so everything is in place for the big 3.13.0 release in 3 weeks!

🔒 Also! Security releases have been made for the full set of Python 3.8 - 3.12. Please upgrade!

ℹ️ discuss.python.org/t/python-3-

🧪 dev.to/hugovk/help-test-python

2024-06-25

Anyone noticed tests running slower on Python 3.12 ? If you're using coverage.py, the quick fix is to set env variable COVERAGE_CORE=sysmon. Just got 3.5x speedup for my tests.

Ref: github.com/nedbat/coveragepy/i and github.com/python/cpython/issu

#python #python312 #coveragepy #pytest #coverage #pytest_cov

To test installation of mapdata.py (pypi.org/project/mapdata/) under Python 3.12 in a venv (my dev machine runs 3.10), the following additional system packages must be installed during the installation of Python 3.12: libssl-dev, build-essential, libffi-dev, libsqlite3-dev, and tk-dev. After installation of these (e.g., with apt on Debian), the Python installation must be completed with `./configure & make & make install`.

#MapData #Python #Python312

novaTopFlexnovaTopFlex
2024-04-14

@ambv One of the symptoms of installing multiple versions on my system is dependency errors. I have installed your interpreter, which is unable to be configured (the other installations have succeeded).

Hugo van Kemenadehugovk
2024-04-09
Cyrille Pontvieuxcpontvieux@piaille.fr
2024-04-05

@foxmask #supervisor works just fine with #python312 . What made you think it's only for python 3.6?

2024-04-03

Looking into the python 3.12 generics. I thought the only, and very tempting, advantage of python over static systems was the quick and dirty linter-only typing.

With half-baked generics, python is just slow C++. If Julia had better tooling outside vscode I would have seen absolutely zero use-cases for generics in python.

#python #python312 #typing #juia #cpp

Paolo Melchiorrepaulox@fosstodon.org
2024-03-27

We just released version 2.5.1 of django-configurations with Python 3.12 compatibility 🎉

pypi.org/project/django-config

#django #python #djangoconfigurations #release #python312

Hugo van Kemenadehugovk
2024-03-12

@driscollis And you can use the CLI with Python 3.12 to quickly generate a UUID!

❯ python -m uuid
e80934a1-9e1e-459d-af4c-56873cee3470

docs.python.org/3/library/uuid

Paolo Melchiorrepaulox@fosstodon.org
2023-12-04

Django 5.0 has been released 🎉

After months of work, everyone can use this great new version 🙌

My favorite features are:
• 🤖 generated fields
• ✅ database default values
• 🔑 prefetch related for generic foreign keys

Which are your favorite features?
djangoproject.com/weblog/2023/

#Django #GeneratedField #GeneratedColumn #Database #ORM #SQLite #PostgreSQL #MySQL #MariaDB #Default #ForeignKey #Django5 #Python #Python312 #Web #Framework #Release #ORM

2023-12-02

Uh, I'm quite disappointed about this future #Python deprecation: blog.miguelgrinberg.com/post/i

It will break some stuff in a few years when it becomes effective.

#deprecation #python312

Dima Pasechnik 🇺🇦 🇳🇱dimpase@mathstodon.xyz
2023-11-20

I don't enjoy writing complaints, but I had to. #python #python312

@peterluschny - I've also opened github.com/python/cpython/issu
to reflect the documentation side of it.

github.com/python/steering-cou

2023-11-18

#python #python312 #programming

@dimpase wrote:
"...the standard Fibonacci(500) example shows this bug just as well."

# fib.py
import sys
sys.setrecursionlimit(2000)
from functools import cache

@cache
def fib(n):
if n<1: return 0
if n==1: return 1
return fib(n-1) + fib(n-2)

print(fib(500))

Me:

That's really an absurdity that can't be surpassed in terms of embarrassment.

I hope the developer is fired, but also the chairman of the Python board.

Because it shows that there is no testing culture in Python. If you tinker with Python's stack screws and don't monitor it with even the most primitive tests like this, then...

In any case, my trust in Python has been severely shaken.

2023-11-17

#python #python312 #programming

What's wrong with Python?

I couldn't be more upset. Today I installed Python 12.0 and my project got completely broken. It worked just fine for many releases, including 11.6.

Why? setrecursionlimit() is ignored! Incredible. But my program needs deep recursions.

Apparently this was already reported in the beta phase, an absolute blocker for every release, but apparently did not lead to any consequences.

discuss.python.org/t/has-sys-s

Sarah Boycesarahboyce
2023-11-17

@djangonaut if you need ideas, our attempt to add 5.0 support for django-storages was stalled that a dropbox library doesn't support Python 3.12 as it's using setup.py (removed in 3.12).
I don't maintain any packages, so I don't really know how this needs updating and how to check it works - but someone on here might!
Then, I'm sure this process could be repeated for a bunch of other Python packages 🐍📦

github.com/dropbox/dropbox-sdk

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst