Skip to content

Commit c565b28

Browse files
committed
Address davidradl comments
1 parent 8793bd0 commit c565b28

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/content/docs/flinkDev/building.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ The `fast` and `skip-webui-build` profiles have a significant impact on the buil
8181

8282
3. Uv for building, installing and managing Python environments (optional)
8383

84-
The tool [uv](https://docs.astral.sh/uv/) is a useful Python package and environment manager that can make building and installing PyFlink from source much easier.
84+
The tool [uv](https://docs.astral.sh/uv/) is a Python package and project manager that can make building and installing PyFlink from source much easier.
8585
To verify that it is installed:
8686

8787
```shell
@@ -118,7 +118,7 @@ To build and install the `apache-flink` and `apache-flink-libraries` packages wi
118118
cd flink-python; uv build; uv build apache-flink-libraries --sdist;
119119
```
120120
121-
The sdist package of `apache-flink-libraries` will be found under `./flink-python/apache-flink-libraries/dist/`. It could be installed as following:
121+
The sdist package of `apache-flink-libraries` will be found under `./flink-python/apache-flink-libraries/dist/`. It can be installed as follows:
122122
123123
```bash
124124
uv pip install apache-flink-libraries/dist/*.tar.gz
@@ -138,7 +138,7 @@ To build and install the `apache-flink` and `apache-flink-libraries` packages wi
138138
cd flink-python; python setup.py sdist bdist_wheel; cd apache-flink-libraries; python setup.py sdist; cd ..;
139139
```
140140
141-
The sdist package of `apache-flink-libraries` will be found under `./flink-python/apache-flink-libraries/dist/`. It could be installed as following:
141+
The sdist package of `apache-flink-libraries` will be found under `./flink-python/apache-flink-libraries/dist/`. It can be installed as follows:
142142
143143
```bash
144144
python -m pip install apache-flink-libraries/dist/*.tar.gz

docs/static/downloads/setup-pyflink-virtual-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ echo "Detected OS: ${sys_os}"
2020
sys_machine=$(uname -m)
2121
echo "Detected machine: ${sys_machine}"
2222

23-
wget "https://github.com/astral-sh/uv/releases/download/0.5.23/uv-installer.sh" -O "uv-installer.sh"
23+
wget "https://github.com/astral-sh/uv/releases/download/0.8.9/uv-installer.sh" -O "uv-installer.sh"
2424
chmod +x uv-installer.sh
2525

2626
UV_UNMANAGED_INSTALL="uv-bin" ./uv-installer.sh

0 commit comments

Comments
 (0)