Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
submodules: false
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
- name: "Install tooling"
run: |
g++-13 --version
Expand All @@ -72,7 +72,7 @@ jobs:
submodules: false
- uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
- run: |
pip install meson pytest
sudo apt install ninja-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- [ubuntu-22.04, musllinux, ppc64le]
- [ubuntu-22.04, musllinux, s390x]
- [macos-14, macosx, arm64]
version: [39, 310, 311, 312]
version: [311, 312, 313, 314]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -38,7 +38,7 @@ jobs:
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.22.0
uses: pypa/cibuildwheel@v3.4.1
env:
CIBW_BUILD: "cp${{ matrix.version }}-${{ matrix.platform[1] }}*"
CIBW_ARCHS: ${{ matrix.platform[2] }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ __barkeep__ strives to be [non-intrusive](#non-intrusive-design).
<img src="docs/img/python-dark.svg" height="22">
</picture>
<a href="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg"><img src="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg" alt="Build status"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img src="https://img.shields.io/badge/python-3.9_|_3.10_|_3.11_|_3.12-blue.svg" alt="pypi"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img src="https://img.shields.io/badge/python-3.11_|_3.12_|_3.13_|_3.14-blue.svg" alt="pypi"></a>
<a href=""><img src="docs/img/pip-install.svg"></a>
</div>

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ __barkeep__ also has [python bindings](https://pypi.python.org/pypi/barkeep).
<br/>
<icon prefix="python"></icon>
<a href="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg"><img style="vertical-align:middle" src="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg" alt="Build status"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img style="vertical-align:middle" src="https://img.shields.io/badge/python-3.9_|_3.10_|_3.11_|_3.12-blue.svg" alt="pypi"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img style="vertical-align:middle" src="https://img.shields.io/badge/python-3.11_|_3.12_|_3.13_|_3.14-blue.svg" alt="pypi"></a>
<code>pip install barkeep</code>

</div>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = 'barkeep'
version = '0.1.5'
description = ''
readme = 'python/README.md'
requires-python = '>=3.9'
requires-python = '>=3.11'
license = {file = 'LICENSE'}
authors = [
{name = 'Ozan Irsoy'},
Expand Down
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Small, C++-based python library to display async animations, counters, and progr


<a href="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg"><img src="https://github.com/oir/barkeep/actions/workflows/build-wheels.yml/badge.svg" alt="Build status"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img src="https://img.shields.io/badge/python-3.9_|_3.10_|_3.11_|_3.12-blue.svg" alt="pypi"></a>
<a href="https://pypi.python.org/pypi/barkeep"><img src="https://img.shields.io/badge/python-3.11_|_3.12_|_3.13_|_3.14-blue.svg" alt="pypi"></a>

__Installation:__ `pip install barkeep`

Expand Down
8 changes: 5 additions & 3 deletions python/meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pymod = import('python')
installations = {
'3.9': pymod.find_installation('python3.9', required: false),
'3.10': pymod.find_installation('python3.10', required: false),
'3.11': pymod.find_installation('python3.11', required: false),
'3.12': pymod.find_installation('python3.12', required: false),
'3.13': pymod.find_installation('python3.13', required: false),
'3.14': pymod.find_installation('python3.14', required: false),
}

py_targets = []
Expand Down Expand Up @@ -34,4 +34,6 @@ foreach tgt : py_targets
message(' ' + tgt.name())
endforeach

alias_target('python', py_targets)
if py_targets.length() > 0
alias_target('python', py_targets)
endif
Loading