Skip to content

Commit c2acfdd

Browse files
committed
fix: πŸ› Fix click issue
1 parent 6954191 commit c2acfdd

File tree

5 files changed

+662
-582
lines changed

5 files changed

+662
-582
lines changed

β€Ž.github/workflows/main.ymlβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
name: 'main'
1+
name: main
2+
23
on:
34
push:
45
branches:
56
- main
67
pull_request:
78
branches:
89
- main
10+
911
jobs:
1012
ci:
1113
runs-on: ubuntu-latest

β€Ž.github/workflows/release_dockerhub.ymlβ€Ž

Lines changed: 0 additions & 34 deletions
This file was deleted.

β€ŽDockerfileβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12-slim-bookworm AS builder
1+
FROM python:3.12-slim-bookworm
22
RUN apt update && apt install -y binutils
33

44
RUN pip install "uv==0.8.3"

β€Žpyproject.tomlβ€Ž

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ requires-python = ">=3.10,<3.14"
77
readme = "README.md"
88
license = "GPL-3.0-or-later"
99
dependencies = [
10-
"pygments>=2.13.0,<3",
11-
"requests>=2.28.2,<3",
12-
"typer>=0.15.3",
1310
"aiohttp>=3.9.0,<4",
14-
"pyyaml>=6.0.1,<7",
15-
"rich>=13.7.1,<14",
11+
"click<8.2.0",
12+
"pygments>=2.13.0,<3",
1613
"pathspec>=0.12.1,<0.13",
1714
"pyperclip>=1.9.0,<2",
15+
"pyyaml>=6.0.1,<7",
16+
"requests>=2.28.2,<3",
17+
"rich>=13.7.1,<14",
1818
"sh>=2.1.0,<3",
19+
"typer>=0.16.0",
1920
]
2021

2122
[project.urls]

0 commit comments

Comments
Β (0)