Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.

Commit 88dcca0

Browse files
committed
revert to oslo 1.1.2
1 parent 174f10f commit 88dcca0

File tree

428 files changed

+30178
-68644
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

428 files changed

+30178
-68644
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TUNiB Inc
1+
TUNiB Inc

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
## Title
22

3-
-
3+
-
44

55
## Description
66

77
-
88

99
## Linked Issues
1010

11-
- resolved #00
11+
- resolved #00

.github/workflows/contributors.yaml

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

.github/workflows/pull_request.yml

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

.gitignore

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ dmypy.json
367367

368368
### vscode ###
369369
.vscode/*
370-
#!.vscode/settings.json
370+
!.vscode/settings.json
371371
!.vscode/tasks.json
372372
!.vscode/launch.json
373373
!.vscode/extensions.json
@@ -387,12 +387,4 @@ dmypy.json
387387

388388
usecases
389389
/usecases
390-
*/usecases
391-
wandb/
392-
393-
# multi gpu mem log
394-
**/core.*
395-
396-
# sample huggingface models
397-
**/pytorch_model.bin
398-
**/config.json
390+
*/usecases

.pre-commit-config.yaml

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

FEATURES.md

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

LICENSE.3rd-party-library

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ ninja
3535
Maintained by Jean-Christophe Fillion-Robin from Kitware Inc. Apache License 2.0
3636
Ninja is also distributed under the Apache License 2.0.
3737
For more information about Ninja, visit https://ninja-build.org
38+

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.PHONY: style
2+
3+
check_dirs := oslo/ tests/
4+
5+
style:
6+
black $(check_dirs)
7+
isort $(check_dirs)
8+
flake8 $(check_dirs)
9+
10+
quality:
11+
isort --check-only $(check_dirs)
12+
flake8 $(check_dirs)

0 commit comments

Comments
 (0)