Un module avec plein d'outils utiles pour devs en PyMoX (Py←thon - Mo←jo - flet→X) en 2026
Project description
PyMoX-Tools
→ New PP Tk
Trousse à outils utiles pour devs en PyMoX
Rapide mémo (Cf. GH)
Bases VE (Virtual Env)
py -m venv .venv
.\.venv\Scripts\activate
py -m pip install --upgrade pip
pip install -r requirements.txt
# Installer en editable mode
# pip install -e .
Définir les TOKENs (TK) nécessaires :
GH_TOKEN dans compte GH User/Settings/Dev settings/PAT/TK (Classic) → new → IMPORTANT: Droits Repo & Wkf PYPI_TOKEN dans compte Pypi.org User/Params/Jetons API
Les insérer dans dépôt GH: Settings / Secrets... / Actions / New Repo secret
Mettre GH TK dans .env (GH PP que si on veut buid + upload depuis local)
Adapter les params Pypi project name
PROJECT\pyproject.toml (name & repository)
Faire un push de la main avec fix: msg, feat: msg ou idem avec ! (fix!: msg)
→ patch, minor ou major
Build local
py -m build
twine check dist/*
twine upload dist/* --verbose
twine upload dist/* -u __token__ -p pypi-pypi-AgEIcHlwaS5vcmcCJDc0ZmY4NWVmLTk0ZjgtNGI5NS05ZmM3LWIyN2M2OTMwMGY0OQACKlszLCJlOGU2N2YxNy1hMWYyLTQ3YjMtOTUzMC00ZDE1YTM2M2YwOWYiXQAABiBWCOyR8YbuSSuyW_untgjDXeG10j7VBBqDAFxiSe_etw
git log --oneline
semantic-release version
semantic-release version --print
semantic-release publish
semantic-release --noop version
Cela te dira si une version serait générée.
semantic-release version --commit --tag --no-push
Cela va :
Lire les commits
Calculer la prochaine version (ex: 0.2.0)
Modifier __version__ dans gc7/__init__.py
Créer un commit et un tag localement
Remove-Item -Recurse -Force dist, src/gc7/gc7.egg-info
git commit --allow-empty -m "feat: add dummy feature for version bump"
git commit --allow-empty -m "fix: déclenchement de la release 1.0.1"
git push origin main
voir conventional commits: https://www.conventionalcommits.org/en/v1.0.0/
En cas de volonté de revenir sur une version précédente (Problème avec PyPI: Interdit de reculer):
git revert <hash du commit> (pour ramener la main du dépôt GH)
dans le __ini__.py, mettre : __version__='x.y.z' (> au dernier de PyPI)
refaire le build + renvoi:
py -m build
twine upload dist/*
Désinstaller tous les packages de l'env global :
pip freeze | ForEach-Object { pip uninstall -y $_ }
# 1. Crée une branche temporaire pour garder les fichiers
git checkout --orphan temp_branch
# 2. Ajoute tous les fichiers à cette nouvelle branche
git add .
# 3. Fais un commit initial
git commit -m "Initial commit"
# 4. Supprime l'ancienne branche main
git branch -D main
# 5. Renomme la branche temporaire en main
git branch -m main
# 6. Force le push vers GitHub (⚠️ cela écrase l’historique distant)
git push -f origin main
git log main --decorate --oneline
---
from pymox_tools1 import greetings as gt
from pymox_tools1 import tokens as tk
if __name__ == "__main__":
tk.tokens()
print(gt.hello(), "\n" + gt.bye())
📦 Règles de versionnement (semantic‑release)
Semantic‑release détermine automatiquement le numéro de version en fonction du type de commit :
| Type de commit | Effet sur la version | Exemple de résultat |
|---|---|---|
fix: |
patch | 0.0.7 → 0.0.8 |
feat: |
minor | 0.0.7 → 0.1.0 |
BREAKING CHANGE: ou feat! / fix! |
major | 0.0.7 → 1.0.0 |
Vérifier les secrets dans .env
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymox_kit-1.0.12.tar.gz.
File metadata
- Download URL: pymox_kit-1.0.12.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
755f226a99bf80ddf2ca071fc2abfcc8df43192be923622617b984caa2f49205
|
|
| MD5 |
3da32f8afd42d311720551af0df6573a
|
|
| BLAKE2b-256 |
ff0728865faa372c83eb58ec2bee98b18bd27112eee82343419566ef4b9e168f
|
File details
Details for the file pymox_kit-1.0.12-py3-none-any.whl.
File metadata
- Download URL: pymox_kit-1.0.12-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e023f6bed22198db236428c19190e7e22fd5357619459f738e0d8535899638ac
|
|
| MD5 |
ccb3316ab8ebab34bfa892cf06c93943
|
|
| BLAKE2b-256 |
e57a8455b568a7a0b625e062eeddea5bca1fdcb9dbcd09f84b00133b1e969a4c
|