ape-linux 0.4.4__tar.gz → 0.4.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ape_linux-0.4.4 → ape_linux-0.4.5}/.github/workflows/publish.yaml +2 -2
- {ape_linux-0.4.4 → ape_linux-0.4.5}/.github/workflows/tests.yaml +5 -5
- {ape_linux-0.4.4 → ape_linux-0.4.5}/PKG-INFO +1 -1
- {ape_linux-0.4.4 → ape_linux-0.4.5}/pyproject.toml +1 -1
- {ape_linux-0.4.4 → ape_linux-0.4.5}/.gitignore +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/.python-version +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/CLAUDE.md +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/LICENSE +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/README.md +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/ape_linux.py +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/justfile +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/tests/test_app.py +0 -0
- {ape_linux-0.4.4 → ape_linux-0.4.5}/uv.lock +0 -0
|
@@ -3,7 +3,7 @@ name: Publish
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
5
|
tags:
|
|
6
|
-
-
|
|
6
|
+
- "*"
|
|
7
7
|
|
|
8
8
|
jobs:
|
|
9
9
|
release:
|
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
environment: release
|
|
15
15
|
steps:
|
|
16
16
|
- name: Checkout repo
|
|
17
|
-
uses: actions/checkout@
|
|
17
|
+
uses: actions/checkout@v7
|
|
18
18
|
- name: Install uv
|
|
19
19
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
20
20
|
- name: Build
|
|
@@ -9,19 +9,19 @@ jobs:
|
|
|
9
9
|
strategy:
|
|
10
10
|
matrix:
|
|
11
11
|
os: [ubuntu-latest, macos-latest]
|
|
12
|
-
python-version: [
|
|
12
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
13
13
|
defaults:
|
|
14
14
|
run:
|
|
15
15
|
shell: bash
|
|
16
16
|
steps:
|
|
17
17
|
- name: Checkout repo
|
|
18
|
-
uses: actions/checkout@
|
|
18
|
+
uses: actions/checkout@v7
|
|
19
19
|
- name: Install uv
|
|
20
20
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
21
21
|
- name: Set up Python ${{ matrix.python-version }}
|
|
22
22
|
run: uv python install ${{ matrix.python-version }}
|
|
23
23
|
- name: Set up just
|
|
24
|
-
uses: extractions/setup-just@
|
|
24
|
+
uses: extractions/setup-just@v4
|
|
25
25
|
- name: Run type check
|
|
26
26
|
run: just type-check
|
|
27
27
|
- name: Run tests
|
|
@@ -32,12 +32,12 @@ jobs:
|
|
|
32
32
|
runs-on: ubuntu-latest
|
|
33
33
|
steps:
|
|
34
34
|
- name: Checkout repo
|
|
35
|
-
uses: actions/checkout@
|
|
35
|
+
uses: actions/checkout@v7
|
|
36
36
|
- name: Install uv
|
|
37
37
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
38
38
|
- name: Set up Python 3.13
|
|
39
39
|
run: uv python install 3.13
|
|
40
40
|
- name: Set up just
|
|
41
|
-
uses: extractions/setup-just@
|
|
41
|
+
uses: extractions/setup-just@v4
|
|
42
42
|
- name: Ruff
|
|
43
43
|
run: just lint
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|