details:   https://code.tryton.org/tools/maintenance/commit/3460077e59f5
branch:    default
user:      Cédric Krier <[email protected]>
date:      Wed Apr 15 16:38:55 2026 +0200
description:
        Search for packages to release using also pyproject.toml
diffstat:

 to_release |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (20 lines):

diff -r e7577d12fe95 -r 3460077e59f5 to_release
--- a/to_release        Tue Apr 07 17:54:50 2026 +0200
+++ b/to_release        Wed Apr 15 16:38:55 2026 +0200
@@ -13,13 +13,16 @@
         shell=True, universal_newlines=True).splitlines()
     branches.remove('default')
     filenames = chain(
+        glob.glob('*/pyproject.toml'),
         glob.glob('*/setup.py'),
+        glob.glob('modules/*/pyproject.toml'),
         glob.glob('modules/*/setup.py'),
         glob.glob('*/package.json'))
 else:
     branches = subprocess.check_output(
         'hg branch', shell=True, universal_newlines=True).splitlines()
     filenames = chain(
+        glob.glob('pyproject.toml'),
         glob.glob('setup.py'),
         glob.glob('package.json'))
 

Reply via email to