Skip to content

Commit 9fde3cf

Browse files
committed
3.0.2 - Fix 'extra_dist' copying
downgrade to gcc 12 (not available in CI)
1 parent db41478 commit 9fde3cf

File tree

12 files changed

+22
-13
lines changed

12 files changed

+22
-13
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
sudo ./llvm.sh 17
5454
rm llvm.sh
5555
if: matrix.system == 'ubuntu-latest'
56-
- run: sudo apt-get install gcc-13 g++-13 clang-17 clang-format-17
56+
- run: sudo apt-get install gcc-12 g++-12 clang-17 clang-format-17
5757
if: matrix.system == 'ubuntu-latest'
5858
- run: sudo apt-get install emscripten
5959
if: matrix.system == 'ubuntu-latest'
@@ -90,7 +90,7 @@ jobs:
9090
9191
- run: |
9292
mk python-release owner=vkottler \
93-
repo=yambs version=3.0.1
93+
repo=yambs version=3.0.2
9494
if: |
9595
matrix.python-version == '3.11'
9696
&& matrix.system == 'ubuntu-latest'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
=====================================
33
generator=datazen
44
version=3.1.4
5-
hash=764ff2be264d6b91ce3832ef00736629
5+
hash=72271a00d30bf23159c35289b5ff7a00
66
=====================================
77
-->
88

9-
# yambs ([3.0.1](https://pypi.org/project/yambs/))
9+
# yambs ([3.0.2](https://pypi.org/project/yambs/))
1010

1111
[![python](https://img.shields.io/pypi/pyversions/yambs.svg)](https://pypi.org/project/yambs/)
1212
![Build Status](https://github.com/vkottler/yambs/workflows/Python%20Package/badge.svg)

local/configs/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ci_local:
2424
- " if: matrix.system == 'ubuntu-latest'"
2525

2626
# Native toolchains.
27-
- "- run: sudo apt-get install gcc-13 g++-13 clang-17 clang-format-17"
27+
- "- run: sudo apt-get install gcc-12 g++-12 clang-17 clang-format-17"
2828
- " if: matrix.system == 'ubuntu-latest'"
2929

3030
# WASM.

local/variables/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
major: 3
33
minor: 0
4-
patch: 1
4+
patch: 2
55
entry: mbs

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
66
name = "yambs"
7-
version = "3.0.1"
7+
version = "3.0.2"
88
description = "Yet another meta build-system."
99
readme = "README.md"
1010
requires-python = ">=3.11"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
123

tests/data/valid/scenarios/native/extra3/subdir/subdir2/test.txt

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
123
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
123

tests/data/valid/scenarios/native/yambs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cflag_groups:
33
debug: [-Og, -g]
44
opt: [-O2]
55

6-
extra_dist: [extra]
6+
extra_dist: [extra/test.txt, extra2, extra3/subdir]
77
extra_sources: [src_extra]
88

99
uf2_family: RP2040
@@ -21,7 +21,7 @@ variants:
2121
enabled: false
2222

2323
debug:
24-
suffix: &gcc_version "-13"
24+
suffix: &gcc_version "-12"
2525
targets: [apps, lib, uf2s]
2626

2727
opt:

0 commit comments

Comments
 (0)