Skip to content

Commit

Permalink
docs: fix typo in documentation
Browse files Browse the repository at this point in the history
chore: prepare 0.0.2 release

Signed-off-by: Zvi Grinberg <[email protected]>
  • Loading branch information
zvigrinberg committed Oct 17, 2023
1 parent 0acf1eb commit 06d004b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ jobs:
java-version: 11
cache: maven

- name: setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: get Python location
id: python-location
run: |
echo "python-bin-location=$(echo $pythonLocation)/bin" >> $GITHUB_OUTPUT
- name: create ssh agent
uses: webfactory/[email protected]
with:
Expand All @@ -59,6 +70,8 @@ jobs:
mvn release:perform -B -ff
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXHORT_PYTHON3_PATH: "${{steps.python-location.outputs.python-bin-location}}/python3"
EXHORT_PIP3_PATH: "${{steps.python-location.outputs.python-bin-location}}/pip3"

- name: Get pom version of released artifact
id: project
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ following keys for setting custom paths for the said executables.

#### Python Support

By default Python support assumes that the package is installed using the pip/pip3 binary on the system PATH, of in the customized
By default, Python support assumes that the package is installed using the pip/pip3 binary on the system PATH, or of the customized
Binaries passed to environment variables. If the package is not installed , then an error will be thrown.

There is an experimental feature of installing the requirement.txt on a virtual env(only python3 or later is supported for this feature) - in this case,
Expand Down

0 comments on commit 06d004b

Please sign in to comment.