Skip to content

Commit f52cb6d

Browse files
committed
Don't ship .mpy files
1 parent ebd9331 commit f52cb6d

File tree

8 files changed

+5
-24
lines changed

8 files changed

+5
-24
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ jobs:
3939
run: ./bin/setup
4040
- name: Install the package
4141
run: "micropython -m mip install github:${{ github.repository }}@${{ github.ref_name }}"
42-
- name: Cross-compile the package
43-
run: ./bin/compile
4442
- name: Run tests
4543
run: micropython -m unittest

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,7 @@ micropython -m unittest
5757

5858
## Releasing
5959

60-
To release a new version, first cross-compile to micropython bytecode. You need `mpy-cross` in your `PATH`:
61-
62-
```bash
63-
./bin/compile
64-
```
65-
66-
Then, update the versions in `manifest.py` and `package.json`. Commit your changes and make a pull request. After merging, create a new tag and push to GitHub:
60+
To release a new version, update the version in `package.json`. Commit your changes and make a pull request. After merging, create a new tag and push to GitHub:
6761

6862
```bash
6963
git tag vX.Y.Z

bin/compile

Lines changed: 0 additions & 11 deletions
This file was deleted.

mqterm/__init__.mpy

-55 Bytes
Binary file not shown.

mqterm/jobs.mpy

-1.7 KB
Binary file not shown.

mqterm/terminal.mpy

-1.74 KB
Binary file not shown.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"urls": [
3-
["mqterm/__init__.mpy", "github:solanus-systems/mqterm/mqterm/__init__.mpy"],
4-
["mqterm/jobs.mpy", "github:solanus-systems/mqterm/mqterm/jobs.mpy"],
5-
["mqterm/terminal.mpy", "github:solanus-systems/mqterm/mqterm/terminal.mpy"]
3+
["mqterm/__init__.py", "github:solanus-systems/mqterm/mqterm/__init__.py"],
4+
["mqterm/jobs.py", "github:solanus-systems/mqterm/mqterm/jobs.py"],
5+
["mqterm/terminal.py", "github:solanus-systems/mqterm/mqterm/terminal.py"]
66
],
77
"deps": [
88
["github:solanus-systems/amqc", "v0.1.0"],
99
["logging", "latest"]
1010
],
11-
"version": "0.1.0"
11+
"version": "0.2.0"
1212
}

pyproject.toml

Whitespace-only changes.

0 commit comments

Comments
 (0)