Skip to content

Commit 80aef9b

Browse files
committed
Исправление ссылки 3
1 parent a867c3b commit 80aef9b

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,4 @@ jobs:
2020
- name: Upload to GitHub Releases
2121
uses: softprops/action-gh-release@v1
2222
with:
23-
files: dist/*.whl
24-
- name: Upload latest wheel to repo root
25-
run: |
26-
# Просто копируем первый найденный wheel
27-
cp dist/*.whl if97_py-latest.whl
28-
git config --local user.email "[email protected]"
29-
git config --local user.name "GitHub Action"
30-
git checkout main
31-
git add if97_py-latest.whl
32-
git commit -m "Update latest wheel"
33-
git push
23+
files: dist/*.whl

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
pip install git+https://github.com/Sam-Strand/if97_py.git
1717
```
1818

19-
### Способ 2: Установка готового пакета (постоянная ссылка)
19+
### Способ 2: Установка готового пакета (без Git)
2020
```bash
21-
pip install https://github.com/Sam-Strand/if97_py/raw/main/if97_py-latest.whl
21+
pip install https://github.com/Sam-Strand/if97_py/releases/download/v1.0.4/if97_py-1.0.4-py3-none-any.whl
2222
```
2323

2424
## Быстрый старт

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="if97_py",
5-
version="1.0.0",
5+
version="1.0.4",
66
url="https://github.com/Sam-Strand/if97_py",
77
author="Садовский М.К.",
88
author_email="[email protected]",
@@ -14,4 +14,4 @@
1414
"numpy>=1.20.0",
1515
"numba>=0.55.0"
1616
]
17-
)
17+
)

0 commit comments

Comments
 (0)