Skip to content

Commit 7f56968

Browse files
Publish LTS installer (#845)
1 parent 807267c commit 7f56968

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/installer.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
- name: make lint
5454
run: cd dipdup-indexer; make lint
5555

56+
- name: Copy installer to scripts
57+
if: contains(github.ref, 'master')
58+
run: rm scripts/* && cp src/dipdup/install.py scripts/install_lts.py
59+
5660
- name: Deploy scripts to GH Pages
5761
if: contains(github.ref, 'master')
5862
uses: peaceiris/actions-gh-pages@v3

docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ We aim to improve cross-platform compatibility in future releases ([issue](https
2626
The following command will install DipDup for the current user:
2727

2828
```shell
29-
curl -Lsf https://dipdup.io/install.py | python
29+
curl -Lsf https://dipdup.io/install_lts.py | python
3030
```
3131

3232
This script uses pipx under the hood to install `dipdup` and `datamodel-codegen` as CLI tools. Then you can use any package manager of your choice to manage versions of DipDup and other project dependencies.

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A modern Linux/macOS distribution with Python 3.10 installed is required to run
1313
You can initialize a hello-world project interactively by choosing configuration options in the terminal. The following command will install DipDup for the current user:
1414

1515
```shell
16-
curl -Lsf https://dipdup.io/install.py | python
16+
curl -Lsf https://dipdup.io/install_lts.py | python
1717
```
1818

1919
Now, let's create a new project:

docs/release-notes/6.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Starting from this release, DipDup comes with an interactive installer to help y
99
Run the command below in the terminal:
1010

1111
```shell
12-
curl -Lsf https://dipdup.io/install.py | python
12+
curl -Lsf https://dipdup.io/install_lts.py | python
1313
```
1414

1515
Follow the instructions to complete the installation.

0 commit comments

Comments
 (0)