equibin 0.1.0__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.
@@ -0,0 +1,47 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: ["main"]
6
+ pull_request:
7
+ branches: ["main"]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ build:
14
+ strategy:
15
+ matrix:
16
+ os: ["ubuntu-latest"]
17
+ python-version: ["3.11", "3.12", "3.13"]
18
+
19
+ runs-on: ${{ matrix.os }}
20
+
21
+ env:
22
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
23
+
24
+ steps:
25
+ - name: Checkout
26
+ uses: actions/checkout@v4
27
+ with:
28
+ fetch-depth: 0
29
+
30
+ - name: Install uv
31
+ uses: astral-sh/setup-uv@v6
32
+ with:
33
+ version: "0.9.5"
34
+ enable-cache: true
35
+ python-version: ${{ matrix.python-version }}
36
+
37
+ - name: Set up Python
38
+ run: uv python install
39
+
40
+ - name: Install dependencies
41
+ run: uv sync --all-extras
42
+
43
+ - name: Lint
44
+ run: uv run python devtools/lint.py
45
+
46
+ - name: Test
47
+ run: uv run pytest
@@ -0,0 +1,42 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build-and-publish:
10
+ runs-on: ubuntu-latest
11
+ env:
12
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
13
+ permissions:
14
+ id-token: write
15
+ contents: read
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
+
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@v6
24
+ with:
25
+ version: "0.9.5"
26
+ enable-cache: true
27
+ python-version: "3.12"
28
+
29
+ - name: Set up Python
30
+ run: uv python install
31
+
32
+ - name: Install dependencies
33
+ run: uv sync --all-extras
34
+
35
+ - name: Run tests
36
+ run: uv run pytest
37
+
38
+ - name: Build package
39
+ run: uv build
40
+
41
+ - name: Publish to PyPI
42
+ run: uv publish --trusted-publishing always
@@ -0,0 +1,42 @@
1
+ # Ignore for Mac
2
+ .DS_Store
3
+
4
+ *.bak
5
+ *.orig
6
+ tmp/
7
+ trash/
8
+ attic/
9
+
10
+ __pycache__/
11
+ *.py[cod]
12
+ *$py.class
13
+ *.so
14
+
15
+ build/
16
+ dist/
17
+ *.egg-info/
18
+ *.egg
19
+
20
+ htmlcov/
21
+ .tox/
22
+ .nox/
23
+ .coverage
24
+ .coverage.*
25
+ .cache
26
+ .pytest_cache/
27
+ cover/
28
+
29
+ .env
30
+ .venv
31
+ env/
32
+ venv/
33
+
34
+ .ipynb_checkpoints
35
+ profile_default/
36
+ ipython_config.py
37
+
38
+ /site
39
+ .mypy_cache/
40
+ .ruff_cache/
41
+ .pyre/
42
+ cython_debug/