Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .actions/setup_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ def load_requirements(
# remove version restrictions unless they are strict
if unfreeze and "<" in req and "strict" not in comment:
req = re.sub(r",? *<=? *[\d\.\*]+", "", req).strip()

# adding strict back to the comment
if "strict" in comment:
req += " # strict"

reqs.append(req)
return reqs

Expand Down
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
/docs/source-app/expertise_levels @williamfalcon @Felonious-Spellfire @RobertLaurella

# Packages
/src/pytorch_lightning @borda @awaelchli @carmocca @justusschock @rohitgr7 @otaj
/src/pytorch_lightning/accelerators @williamfalcon @tchaton @SeanNaren @awaelchli @justusschock @kaushikb11
/src/pytorch_lightning/callbacks @williamfalcon @tchaton @carmocca @borda @kaushikb11
/src/pytorch_lightning/core @tchaton @SeanNaren @borda @carmocca @justusschock @kaushikb11
Expand Down
4 changes: 2 additions & 2 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ pull_request_rules:
- -conflict # skip if conflict
- -draft # filter-out GH draft PRs
- label="ready"
- "#approved-reviews-by<3" # number of review approvals
- "#review-requested<3" # number of requested reviews
- "#approved-reviews-by<2" # number of review approvals
- "#review-requested<2" # number of requested reviews
actions:
request_reviews:
teams:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Deploy Docs"
on:
push:
branches: [master]
branches: ["release/app"]

jobs:
# https://github.com/marketplace/actions/deploy-to-github-pages
Expand Down
2 changes: 1 addition & 1 deletion _notebooks
Submodule _notebooks updated 34 files
+7 −7 .actions/assistant.py
+4 −5 .azure/ipynb-publish.yml
+3 −4 .azure/ipynb-tests.yml
+1 −1 .github/CONTRIBUTING.md
+1 −1 .github/ISSUE_TEMPLATE/config.yml
+14 −0 .github/dependabot.yml
+3 −3 .github/workflows/ci_code-format.yml
+3 −3 .github/workflows/ci_docs.yml
+1 −1 .github/workflows/ci_schema.yml
+4 −4 .github/workflows/ci_test-acts.yml
+3 −3 .github/workflows/ci_testing.yml
+4 −4 .github/workflows/docs-deploy.yml
+684 −697 .notebooks/lightning_examples/basic-gan.ipynb
+7 −6 .notebooks/lightning_examples/basic-gan.yaml
+2,237 −1,871 .notebooks/lightning_examples/datamodules.ipynb
+8 −7 .notebooks/lightning_examples/datamodules.yaml
+696 −794 .notebooks/lightning_examples/finetuning-scheduler.ipynb
+10 −12 .notebooks/lightning_examples/finetuning-scheduler.yaml
+1,110 −1,069 .notebooks/lightning_examples/mnist-hello-world.ipynb
+8 −7 .notebooks/lightning_examples/mnist-hello-world.yaml
+25 −28 .notebooks/lightning_examples/mnist-tpu-training.ipynb
+7 −6 .notebooks/lightning_examples/mnist-tpu-training.yaml
+3 −3 .pre-commit-config.yaml
+5 −5 README.md
+1 −1 docs/requirements.txt
+4 −4 docs/source/_templates/theme_variables.jinja
+2 −5 lightning_examples/basic-gan/gan.py
+1 −1 lightning_examples/datamodules/.meta.yml
+3 −6 lightning_examples/datamodules/datamodules.py
+6 −7 lightning_examples/finetuning-scheduler/.meta.yml
+83 −95 lightning_examples/finetuning-scheduler/finetuning-scheduler.py
+ lightning_examples/finetuning-scheduler/logo_fts.png
+1 −1 lightning_examples/mnist-hello-world/hello-world.py
+3 −6 lightning_examples/mnist-tpu-training/mnist-tpu.py
2 changes: 1 addition & 1 deletion requirements/app/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jinja2==3.0.3
lightning-cloud==0.5.3
packaging
deepdiff >= 5.7.0
starsessions
starsessions>=1.2.1, <2.0 # strict
fsspec==2022.01.0
s3fs==2022.1.0
croniter # for now until we found something more robust.
Expand Down
1 change: 0 additions & 1 deletion requirements/app/cloud.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
starsessions
redis==4.1.0
docker==5.0.3
setuptools==59.5.0
Expand Down