code-aide 1.4.0__tar.gz → 1.4.1__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.
- code_aide-1.4.1/.gitlab-ci.yml +57 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/PKG-INFO +1 -1
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/__init__.py +1 -1
- code_aide-1.4.0/.gitlab-ci.yml +0 -26
- {code_aide-1.4.0 → code_aide-1.4.1}/.github/workflows/ci.yml +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/.github/workflows/publish.yml +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/.gitignore +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/.pre-commit-config.yaml +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/AGENTS.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/CLAUDE.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/LICENSE +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/README.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/TODO.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/pyproject.toml +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/specs/missing-coding-llm-cli-tools.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/specs/pre-commit-uv-setup.md +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/__main__.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/commands_actions.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/commands_tools.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/config.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/console.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/constants.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/data/tools.json +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/detection.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/entry.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/install.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/operations.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/prereqs.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/status.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/src/code_aide/versions.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_commands_actions.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_commands_tools.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_config.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_console.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_constants.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_detection.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_install.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_operations.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_status.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/tests/test_versions.py +0 -0
- {code_aide-1.4.0 → code_aide-1.4.1}/uv.lock +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# GitLab CI - same checks as GitHub Actions
|
|
2
|
+
# Uses Astral's uv Docker images with UV_LINK_MODE=copy (required for GitLab CI)
|
|
3
|
+
# Release job creates GitLab releases with changelog when v* tags are pushed
|
|
4
|
+
|
|
5
|
+
variables:
|
|
6
|
+
UV_LINK_MODE: copy
|
|
7
|
+
|
|
8
|
+
.check_template: &check_definition
|
|
9
|
+
before_script:
|
|
10
|
+
- uv lock --check
|
|
11
|
+
- uv sync --locked
|
|
12
|
+
script:
|
|
13
|
+
- uv run ruff check .
|
|
14
|
+
- uv run black --check .
|
|
15
|
+
- uv run pytest tests/ -v
|
|
16
|
+
|
|
17
|
+
check:python3.11:
|
|
18
|
+
<<: *check_definition
|
|
19
|
+
image: ghcr.io/astral-sh/uv:python3.11-trixie-slim
|
|
20
|
+
|
|
21
|
+
check:python3.12:
|
|
22
|
+
<<: *check_definition
|
|
23
|
+
image: ghcr.io/astral-sh/uv:python3.12-trixie-slim
|
|
24
|
+
|
|
25
|
+
check:python3.13:
|
|
26
|
+
<<: *check_definition
|
|
27
|
+
image: ghcr.io/astral-sh/uv:python3.13-trixie-slim
|
|
28
|
+
|
|
29
|
+
release:
|
|
30
|
+
image: alpine:3
|
|
31
|
+
variables:
|
|
32
|
+
GIT_DEPTH: 0
|
|
33
|
+
before_script:
|
|
34
|
+
- apk add --no-cache git
|
|
35
|
+
script:
|
|
36
|
+
- |
|
|
37
|
+
previous_tag="$(git describe --tags --abbrev=0 "${CI_COMMIT_TAG}^" 2>/dev/null || true)"
|
|
38
|
+
{
|
|
39
|
+
echo "## Commits"
|
|
40
|
+
echo
|
|
41
|
+
if [ -n "${previous_tag}" ]; then
|
|
42
|
+
echo "Range: \`${previous_tag}..${CI_COMMIT_TAG}\`"
|
|
43
|
+
echo
|
|
44
|
+
git log --pretty=format:'* %s (%h)' "${previous_tag}..${CI_COMMIT_TAG}"
|
|
45
|
+
else
|
|
46
|
+
echo "First tagged release."
|
|
47
|
+
echo
|
|
48
|
+
git log --pretty=format:'* %s (%h)' "${CI_COMMIT_TAG}"
|
|
49
|
+
fi
|
|
50
|
+
} > release_notes.md
|
|
51
|
+
- echo "release job"
|
|
52
|
+
release:
|
|
53
|
+
tag_name: $CI_COMMIT_TAG
|
|
54
|
+
name: 'Release $CI_COMMIT_TAG'
|
|
55
|
+
description: './release_notes.md'
|
|
56
|
+
rules:
|
|
57
|
+
- if: $CI_COMMIT_TAG =~ /^v/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-aide
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.1
|
|
4
4
|
Summary: Manage AI coding CLI tools (Claude, Copilot, Cursor, Gemini, Amp, Codex)
|
|
5
5
|
Project-URL: Homepage, https://github.com/dajobe/code-aide
|
|
6
6
|
Project-URL: Repository, https://github.com/dajobe/code-aide
|
code_aide-1.4.0/.gitlab-ci.yml
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# GitLab CI - same checks as GitHub Actions
|
|
2
|
-
# Uses Astral's uv Docker images with UV_LINK_MODE=copy (required for GitLab CI)
|
|
3
|
-
|
|
4
|
-
variables:
|
|
5
|
-
UV_LINK_MODE: copy
|
|
6
|
-
|
|
7
|
-
.check_template: &check_definition
|
|
8
|
-
before_script:
|
|
9
|
-
- uv lock --check
|
|
10
|
-
- uv sync --locked
|
|
11
|
-
script:
|
|
12
|
-
- uv run ruff check .
|
|
13
|
-
- uv run black --check .
|
|
14
|
-
- uv run pytest tests/ -v
|
|
15
|
-
|
|
16
|
-
check:python3.11:
|
|
17
|
-
<<: *check_definition
|
|
18
|
-
image: ghcr.io/astral-sh/uv:python3.11-trixie-slim
|
|
19
|
-
|
|
20
|
-
check:python3.12:
|
|
21
|
-
<<: *check_definition
|
|
22
|
-
image: ghcr.io/astral-sh/uv:python3.12-trixie-slim
|
|
23
|
-
|
|
24
|
-
check:python3.13:
|
|
25
|
-
<<: *check_definition
|
|
26
|
-
image: ghcr.io/astral-sh/uv:python3.13-trixie-slim
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|