Skip to content

Commit 1aa8275

Browse files
committed
moved to organisation cortexm
1 parent 7dffb56 commit 1aa8275

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pip3 install mpytool
4141
### Installation from git (latest development version)
4242

4343
```bash
44-
pip3 install git+https://github.com/pavelrevak/mpytool.git
44+
pip3 install git+https://github.com/cortexm/mpytool.git
4545
```
4646

4747
### Installation in virtualenv
@@ -647,7 +647,7 @@ autoload -Uz compinit && compinit
647647
**Quick install (or update):**
648648
```bash
649649
mkdir -p ~/.zsh/completions
650-
curl -fsSL https://raw.githubusercontent.com/pavelrevak/mpytool/main/completions/_mpytool -o ~/.zsh/completions/_mpytool
650+
curl -fsSL https://raw.githubusercontent.com/cortexm/mpytool/main/completions/_mpytool -o ~/.zsh/completions/_mpytool
651651
grep -q '\.zsh/completions' ~/.zshrc || echo 'fpath=(~/.zsh/completions $fpath); autoload -Uz compinit && compinit' >> ~/.zshrc
652652
exec zsh
653653
```
@@ -668,17 +668,17 @@ source ~/.mpytool-completion.bash
668668

669669
**Quick install (Linux system-wide):**
670670
```bash
671-
sudo curl -fsSL https://raw.githubusercontent.com/pavelrevak/mpytool/main/completions/mpytool.bash -o /etc/bash_completion.d/mpytool && exec bash
671+
sudo curl -fsSL https://raw.githubusercontent.com/cortexm/mpytool/main/completions/mpytool.bash -o /etc/bash_completion.d/mpytool && exec bash
672672
```
673673

674674
**Quick install (macOS Homebrew):**
675675
```bash
676-
curl -fsSL https://raw.githubusercontent.com/pavelrevak/mpytool/main/completions/mpytool.bash -o /usr/local/etc/bash_completion.d/mpytool && exec bash
676+
curl -fsSL https://raw.githubusercontent.com/cortexm/mpytool/main/completions/mpytool.bash -o /usr/local/etc/bash_completion.d/mpytool && exec bash
677677
```
678678

679679
**Quick install (user directory):**
680680
```bash
681-
curl -fsSL https://raw.githubusercontent.com/pavelrevak/mpytool/main/completions/mpytool.bash -o ~/.mpytool-completion.bash
681+
curl -fsSL https://raw.githubusercontent.com/cortexm/mpytool/main/completions/mpytool.bash -o ~/.mpytool-completion.bash
682682
grep -q 'mpytool-completion' ~/.bashrc || echo 'source ~/.mpytool-completion.bash' >> ~/.bashrc
683683
exec bash
684684
```
@@ -754,4 +754,4 @@ MIT
754754
### Support
755755

756756
- Basic support is free over GitHub issues.
757-
- Professional support is available over email: [Pavel Revak](mailto:pavel.revak@gmail.com?subject=[GitHub]%20mpytool).
757+
- Professional support is available over email: [Pavel Revak](mailto:pavelrevak@gmail.com?subject=[GitHub]%20mpytool).

README_API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,4 +1336,4 @@ except mpytool.ConnError as e:
13361336
## See Also
13371337

13381338
- [README.md](README.md) - CLI documentation and examples
1339-
- [GitHub Repository](https://github.com/pavelrevak/mpytool)
1339+
- [GitHub Repository](https://github.com/cortexm/mpytool)

README_mpremote.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mpytool vs mpremote Comparison
22

3-
Detailed comparison between [mpytool](https://github.com/pavelrevak/mpytool) and [mpremote](https://docs.micropython.org/en/latest/reference/mpremote.html).
3+
Detailed comparison between [mpytool](https://github.com/cortexm/mpytool) and [mpremote](https://docs.micropython.org/en/latest/reference/mpremote.html).
44

55
## Commands
66

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ readme = "README.md"
1010
license = "MIT"
1111
requires-python = ">=3.10"
1212
authors = [
13-
{ name = "Pavel Revak", email = "pavel.revak@gmail.com" }
13+
{ name = "Pavel Revak", email = "pavelrevak@gmail.com" }
1414
]
1515
keywords = ["MPY", "micropython"]
1616
dependencies = [
1717
"pyserial>=3.0",
1818
]
1919

2020
[project.urls]
21-
Homepage = "https://github.com/pavelrevak/mpytool"
21+
Homepage = "https://github.com/cortexm/mpytool"
2222

2323
[project.scripts]
2424
mpytool = "mpytool.mpytool:main"

0 commit comments

Comments
 (0)