view roundup/dist/command/install_lib.py @ 8497:9d1fde7a4bea

build: bump codecov/codecov-action from 5.5.1 to 5.5.2 (PR #76)
author John Rouillard <rouilj@ieee.org>
date Mon, 15 Dec 2025 09:45:32 -0500
parents 42bf0a707763
children
line wrap: on
line source

from roundup.dist.command.build import build_message_files, check_manifest
from setuptools.command.install_lib import install_lib as base

class install_lib(base):

    def run(self):
        check_manifest()
        build_message_files(self)
        base.run(self)

Roundup Issue Tracker: http://roundup-tracker.org/