Skip to content

Commit fb5fe22

Browse files
committed
workflow: add apple arm64
1 parent 77651c5 commit fb5fe22

3 files changed

Lines changed: 15 additions & 12 deletions

File tree

.github/workflows/default.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: [windows-latest, macos-latest, macos-latest]
12+
os: [windows-latest, macos-latest, macos-14]
1313
python-version: ['3.9', '3.10', '3.11', '3.12']
1414
dist: [bdist_wheel]
15+
exclude:
16+
- os: macos-14
17+
python-version: '3.9'
1518
steps:
1619
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v4
1821
with:
1922
python-version: ${{ matrix.python-version }}
2023
- name: Checkout code

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
/opt/python/cp39-cp39/bin/python setup.py bdist_wheel
2828
/opt/python/cp310-cp310/bin/python setup.py bdist_wheel
2929
/opt/python/cp311-cp311/bin/python setup.py bdist_wheel
30-
/opt/python/cp312-cp312/bin/python setup.py bdist_wheel sdist
30+
/opt/python/cp312-cp312/bin/python setup.py bdist_wheel
3131
- name: Run tests
3232
run: |
3333
/opt/python/cp39-cp39/bin/pip install --find-links=dist materialyoucolor
@@ -42,7 +42,7 @@ jobs:
4242
4343
/opt/python/cp39-cp39/bin/pip install auditwheel
4444
mkdir wheelhouse
45-
mv dist/*.tar.gz wheelhouse/
45+
rm -rf dist/*.tar.gz
4646
auditwheel repair dist/*
4747
echo "Built dists:"
4848
ls wheelhouse

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,6 @@ pip3 install materialyoucolor --upgrade
4141
Prebuilt binaries are avaliable for `linux`, `windows` and `macos`. If prebuilt binaries aren't available, then you should manually build and install.
4242

4343

44-
### Arch Linux
45-
46-
```console
47-
yay -S python-materialyoucolor
48-
```
49-
50-
Thanks :heart: to [@midn8hustlr](https://github.com/midn8hustlr) for this [AUR package](https://aur.archlinux.org/cgit/aur.git/?h=python-materialyoucolor-git).
51-
5244
### Build and install
5345

5446
```console
@@ -57,6 +49,14 @@ pip3 install https://github.com/T-Dynamos/materialyoucolor-python/archive/master
5749

5850
```
5951

52+
#### Arch Linux
53+
54+
```console
55+
yay -S python-materialyoucolor
56+
```
57+
58+
Thanks :heart: to [@midn8hustlr](https://github.com/midn8hustlr) for this [AUR package](https://aur.archlinux.org/cgit/aur.git/?h=python-materialyoucolor-git).
59+
6060
#### Android (using kivy's [`buildozer`](https://github.com/kivy/buildozer))
6161

6262
Ensure these lines in `buildozer.spec`:

0 commit comments

Comments
 (0)