You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Contribution guide
2
2
3
-
Contributions are welcome!
3
+
Contributions are welcome!:smile:
4
4
5
5
## Instructions
6
6
@@ -18,18 +18,18 @@ cd fastplotlib
18
18
pip install -e ".[notebook,docs,tests]
19
19
```
20
20
21
-
3. Checkout the `master` branch, and then checkout your feature or bug fix branch, and run tests:
21
+
3. Checkout the `main` branch, and then checkout your feature or bug fix branch, and run tests:
22
22
23
23
>**Warning**
24
24
> Do not commit or add any changes from `examples/screenshots` or `examples/diffs`.
25
-
> If you are creating new test examples that generate or change screenshots please post an issue on the repo and we will help you.
25
+
> If you are creating new test examples that generate or change screenshots please post an issue on the repo and we will help you. The screenshots will be generated on github actions servers, which you can then copy into the screenshots dir. :)
26
26
27
27
```bash
28
28
cd fastplotlib
29
29
30
-
git checkout master
30
+
git checkout main
31
31
32
-
# checkout your new branch from master
32
+
# checkout your new branch from main
33
33
git checkout -b my-new-feature-branch
34
34
35
35
# make your changes
@@ -49,4 +49,4 @@ git commit -m "my new feature"
49
49
git push origin my-new-feature-branch
50
50
```
51
51
52
-
4. Finally make a **draft** PR against the `master` branch. When you think the PR is ready, mark it for review to trigger tests using our CI pipeline. If you need to make changes, please set the PR to a draft when pushing further commits until it's ready for review scion. We will get back to your with any further suggestions!
52
+
4. Finally make a **draft** PR against the `main` branch. When you think the PR is ready, mark it for review to trigger tests using our CI pipeline. If you need to make changes, please set the PR to a draft when pushing further commits until it's ready for review scion. We will get back to your with any further suggestions!
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ A fast plotting library built using the [`pygfx`](https://github.com/pygfx/pygfx
40
40
41
41
http://fastplotlib.readthedocs.io/
42
42
43
-
The Quickstart guide is not interactive. We recommend cloning/downloading the repo and trying out the `desktop` or `notebook` examples: https://github.com/kushalkolar/fastplotlib/tree/master/examples
43
+
The Quickstart guide is not interactive. We recommend cloning/downloading the repo and trying out the `desktop` or `notebook` examples: https://github.com/kushalkolar/fastplotlib/tree/main/examples
44
44
45
45
If someone wants to integrate `pyodide` with `pygfx` we would be able to have live interactive examples! :smiley:
> `fastplotlib` and `pygfx` are fast evolving, you may require the latest `pygfx` and `fastplotlib` from github to use the examples in the master branch.
86
+
> `fastplotlib` and `pygfx` are fast evolving, you may require the latest `pygfx` and `fastplotlib` from github to use the examples in the main branch.
87
87
88
88
Note that `fastplotlib` code is basically identical between desktop and notebook usage. The differences are:
89
89
- Running in `Qt` or `glfw` require a `fastplotlib.run()` call (which is really just a `wgpu``run()` call)
@@ -93,7 +93,7 @@ Note that `fastplotlib` code is basically identical between desktop and notebook
@@ -152,6 +152,6 @@ As far as I know, WGPU uses Metal instead of Vulkan on Mac. You will need at lea
152
152
153
153
# :heart: Contributing
154
154
155
-
We welcome contributions! See the contributing guide: https://github.com/kushalkolar/fastplotlib/blob/master/CONTRIBUTING.md
155
+
We welcome contributions! See the contributing guide: https://github.com/kushalkolar/fastplotlib/blob/main/CONTRIBUTING.md
156
156
157
157
You can also take a look at our [**Roadmap for 2023**](https://github.com/kushalkolar/fastplotlib/issues/55) and [**Issues**](https://github.com/kushalkolar/fastplotlib/issues) for ideas on how to contribute!
0 commit comments