Coverage for rust2rpm/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-10-27 15:35 +0100

1from rust2rpm import licensing 

2 

3__all__ = ["licensing"] 

4 

5# Versioning policy: 

6# 

7# - Increment major version if rendered spec files have changed 

8# (for example, because of changes to the template). 

9# - Increment only the minor version if spec file rendering is unchanged since 

10# the release of the last major version, but new features were added. 

11# - Increment only the patch version if there were only bug fixes since the 

12# release of the last minor version. 

13# 

14# Only the major version is included in the header of generated spec files. 

15__version__ = "26.2.0" 

16 

17TARGET_ARCHES = [ 

18 "x86_64", 

19 "x86", 

20 "aarch64", 

21 "arm", 

22 "powerpc64", 

23 "s390x", 

24 "riscv64", 

25]