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
We separated bug-fix PRs and feature PRs and they shall land in master and release/1.X-dev accordingly.
6
+
By default all PR are targeted to master which is correct for bug-fixes, but need to be change for features.
7
+
If you miss it we can still fix it for you, just ping us... :]
8
+
4
9
Please include a summary of the change and which issue is fixed.
5
10
Please also include relevant motivation and context.
6
11
List any dependencies that are required for this change.
7
12
8
13
If we didn't discuss your PR in Github issues there's a high chance it will not be merged.
9
14
-->
10
15
11
-
Fixes # (issue)
16
+
Fixes # (issue) <- this [links related issue to this PR](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword)
12
17
13
18
## Before submitting
14
-
-[ ] Was this discussed/approved via a Github issue? (no need for typos and docs improvements)
15
-
-[ ] Did you read the [contributor guideline](https://github.com/PyTorchLightning/pytorch-lightning/blob/master/.github/CONTRIBUTING.md), Pull Request section?
16
-
-[ ] Did you make sure your PR does only one thing, instead of bundling different changes together? Otherwise, we ask you to create a separate PR for every change.
17
-
-[ ] Did you make sure to update the documentation with your changes?
18
-
-[ ] Did you write any new necessary tests?
19
+
-[ ] Was this discussed/approved via a GitHub issue? (not for typos and docs)
20
+
-[ ] Did you read the [contributor guideline](https://github.com/PyTorchLightning/pytorch-lightning/blob/master/.github/CONTRIBUTING.md), **Pull Request** section?
21
+
-[ ] Did you make sure your PR does only one thing, instead of bundling different changes together?
22
+
-[ ] Did you make sure to update the documentation with your changes? (if necessary)
23
+
-[ ] Did you write any new necessary tests? (not for typos and docs)
19
24
-[ ] Did you verify new and existing tests pass locally with your changes?
20
-
-[ ]If you made a notable change (that affects users), did you update the [CHANGELOG](https://github.com/PyTorchLightning/pytorch-lightning/blob/master/CHANGELOG.md)?
25
+
-[ ]Did you update the [CHANGELOG](https://github.com/PyTorchLightning/pytorch-lightning/blob/master/CHANGELOG.md)? (not for typos, docs, test updates, or internal minor changes/refactorings)
21
26
22
27
<!-- For CHANGELOG separate each item in the unreleased section by a blank line to reduce collisions -->
23
28
24
29
## PR review
25
30
Anyone in the community is free to review the PR once the tests have passed.
26
-
Before you start reviewing make sure you have read [Review guidelines](https://github.com/PyTorchLightning/pytorch-lightning/wiki/Review-guidelines). In short, see the following bullet-list:
31
+
Before you start reviewing make sure you have read [Review guidelines](https://github.com/PyTorchLightning/pytorch-lightning/wiki/Review-guidelines). In short, see the following bullet-list:
27
32
28
33
-[ ] Is this pull request ready for review? (if not, please submit in draft mode)
29
34
-[ ] Check that all items from **Before submitting** are resolved
30
35
-[ ] Make sure the title is self-explanatory and the description concisely explains the PR
31
-
-[ ] Add labels and milestones (and optionally projects) to the PR so it can be classified; _Bugfixes should be including in bug-fix release milestones (m.f.X) and features should be included in (m.X.b) releases._
32
-
36
+
-[ ] Add labels and milestones (and optionally projects) to the PR so it can be classified
37
+
-[ ]**Check that target branch and milestone match!**
Copy file name to clipboardExpand all lines: .github/workflows/ci_test-full.yml
+31-10Lines changed: 31 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -47,26 +47,47 @@ jobs:
47
47
if: runner.os == 'windows'
48
48
run: |
49
49
# remove Horovod from requirements
50
-
python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if not line.startswith('horovod')] ; open(fname, 'w').writelines(lines)"
50
+
fname = 'requirements/extra.txt'
51
+
lines = [line for line in open(fname).readlines() if not line.startswith('horovod')]
52
+
open(fname, 'w').writelines(lines)
53
+
shell: python
51
54
52
55
# versions <= 1.3 may have issues on mac with some BLAS ops due to missing mkl (https://github.com/pytorch/pytorch/issues/18996)
python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if 'fairscale' not in line] ; open(fname, 'w').writelines(lines)"
87
+
fname = 'requirements/extra.txt'
88
+
lines = [line for line in open(fname).readlines() if 'fairscale' not in line]
89
+
open(fname, 'w').writelines(lines)
90
+
shell: python
70
91
71
92
# Note: This uses an internal pip API and may not always work
0 commit comments