Skip to content

Commit 46e001e

Browse files
committed
This closes #37, bump v0.0.7
- Upgrade GitHub Action tool chains version
1 parent 98942a5 commit 46e001e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
run: |
100100
docker run --rm -v $PWD:/src -w /src quay.io/pypa/manylinux2014_x86_64 bash -c "
101101
yum install -y wget || true
102-
wget https://go.dev/dl/go1.25.4.linux-amd64.tar.gz && \
103-
tar -C /usr/local -xzf go1.25.4.linux-amd64.tar.gz && \
102+
wget https://go.dev/dl/go1.25.5.linux-amd64.tar.gz && \
103+
tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz && \
104104
export PATH=/usr/local/go/bin:\$PATH && \
105105
CGO_ENABLED=1 CC=gcc GOOS=linux GOARCH=amd64 \
106106
go build -buildmode=c-shared -ldflags='-s -w' -trimpath \
@@ -110,8 +110,8 @@ jobs:
110110
111111
docker run --rm -v $PWD:/src -w /src quay.io/pypa/manylinux2014_i686 bash -c "
112112
yum install -y wget || true
113-
wget https://go.dev/dl/go1.25.4.linux-386.tar.gz && \
114-
tar -C /usr/local -xzf go1.25.4.linux-386.tar.gz && \
113+
wget https://go.dev/dl/go1.25.5.linux-386.tar.gz && \
114+
tar -C /usr/local -xzf go1.25.5.linux-386.tar.gz && \
115115
export PATH=/usr/local/go/bin:\$PATH && \
116116
CGO_ENABLED=1 CC=gcc GOOS=linux GOARCH=386 \
117117
go build -buildmode=c-shared -ldflags='-s -w' -trimpath \
@@ -126,8 +126,8 @@ jobs:
126126
run: |
127127
docker run --rm -v $PWD:/src -w /src quay.io/pypa/manylinux2014_aarch64 bash -c "
128128
yum install -y wget || true
129-
wget https://go.dev/dl/go1.25.4.linux-arm64.tar.gz && \
130-
tar -C /usr/local -xzf go1.25.4.linux-arm64.tar.gz && \
129+
wget https://go.dev/dl/go1.25.5.linux-arm64.tar.gz && \
130+
tar -C /usr/local -xzf go1.25.5.linux-arm64.tar.gz && \
131131
export PATH=/usr/local/go/bin:\$PATH && \
132132
CGO_ENABLED=1 CC=gcc GOOS=linux GOARCH=arm64 \
133133
go build -buildmode=c-shared -ldflags='-s -w' -trimpath \

excelize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def load_lib() -> Optional[str]:
9999

100100
lib = CDLL(os.path.join(os.path.dirname(__file__), load_lib()))
101101
ENCODE = "utf-8"
102-
__version__ = "0.0.6"
102+
__version__ = "0.0.7"
103103
uppercase_words = ["id", "rgb", "sq", "xml"]
104104

105105

@@ -1526,7 +1526,7 @@ def add_form_control(self, sheet: str, opts: FormControl) -> None:
15261526
```
15271527
15281528
Example 4, add horizontally scroll bar form control on Sheet1!A2 to
1529-
change the value of Sheet1!A1 by click the scroll arrows or drag
1529+
change the value of Sheet1!A1 by click the scroll arrows or drag
15301530
the scroll box:
15311531
15321532
```python

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
require (
1111
github.com/richardlehane/mscfb v1.0.4 // indirect
1212
github.com/richardlehane/msoleps v1.0.4 // indirect
13-
github.com/tiendc/go-deepcopy v1.7.1 // indirect
13+
github.com/tiendc/go-deepcopy v1.7.2 // indirect
1414
github.com/xuri/efp v0.0.1 // indirect
1515
github.com/xuri/nfp v0.0.2-0.20250530014748-2ddeb826f9a9 // indirect
1616
golang.org/x/crypto v0.45.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ github.com/richardlehane/msoleps v1.0.4 h1:WuESlvhX3gH2IHcd8UqyCuFY5yiq/GR/yqaSM
99
github.com/richardlehane/msoleps v1.0.4/go.mod h1:BWev5JBpU9Ko2WAgmZEuiz4/u3ZYTKbjLycmwiWUfWg=
1010
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
1111
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
12-
github.com/tiendc/go-deepcopy v1.7.1 h1:LnubftI6nYaaMOcaz0LphzwraqN8jiWTwm416sitff4=
13-
github.com/tiendc/go-deepcopy v1.7.1/go.mod h1:4bKjNC2r7boYOkD2IOuZpYjmlDdzjbpTRyCx+goBCJQ=
12+
github.com/tiendc/go-deepcopy v1.7.2 h1:Ut2yYR7W9tWjTQitganoIue4UGxZwCcJy3orjrrIj44=
13+
github.com/tiendc/go-deepcopy v1.7.2/go.mod h1:4bKjNC2r7boYOkD2IOuZpYjmlDdzjbpTRyCx+goBCJQ=
1414
github.com/xuri/efp v0.0.1 h1:fws5Rv3myXyYni8uwj2qKjVaRP30PdjeYe2Y6FDsCL8=
1515
github.com/xuri/efp v0.0.1/go.mod h1:ybY/Jr0T0GTCnYjKqmdwxyxn2BQf2RcQIIvex5QldPI=
1616
github.com/xuri/excelize/v2 v2.10.1-0.20251128004124-f1ac51e63bc8 h1:BMTZwsTDkAGubaojDitcn7jw+VbPCRT5vpV2C4eD/gY=

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def run(self):
4242

4343
setup(
4444
name="excelize",
45-
version="0.0.6",
45+
version="0.0.7",
4646
license="BSD 3-Clause",
4747
license_files=("LICENSE"),
4848
description="A Python build of the Go Excelize library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets",

0 commit comments

Comments
 (0)