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
1 change: 0 additions & 1 deletion .github/process_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"bc-breaking",
"deprecation",
"other",
"prototype",
}

SECONDARY_LABELS = {
Expand Down
59 changes: 0 additions & 59 deletions .github/workflows/prototype-tests-linux-gpu.yml

This file was deleted.

26 changes: 0 additions & 26 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,6 @@ allow_redefinition = True
no_implicit_optional = True
warn_redundant_casts = True

[mypy-torchvision.prototype.datapoints.*]

; untyped definitions and calls
disallow_untyped_defs = True

; None and Optional handling
no_implicit_optional = True

; warnings
warn_unused_ignores = True

; miscellaneous strictness flags
allow_redefinition = True

[mypy-torchvision.prototype.transforms.*]

ignore_errors = True

[mypy-torchvision.prototype.datasets.*]

ignore_errors = True

[mypy-torchvision.prototype.models.*]

ignore_errors = True

[mypy-torchvision.io.image.*]

ignore_errors = True
Expand Down
1 change: 0 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ addopts =
# verbose output
-v
--ignore=test/test_datasets_download.py
--ignore-glob=test/test_prototype_*.py
testpaths =
test
xfail_strict = True
3 changes: 3 additions & 0 deletions references/depth/stereo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This folder contains reference training scripts for Stereo Matching.
They serve as a log of how to train specific models, so as to provide baseline
training and evaluation scripts to quickly bootstrap research.

Note: this depends on the `prototype` folder which was removed, the latest
commit with the prototype folder is 8b6ba92ce5c48d6db596f6d415a90c128bc5f77b.


### CREStereo

Expand Down
4 changes: 1 addition & 3 deletions scripts/release_notes/classify_prs.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,9 @@


# In[9]:
def format_prs(mod_df, exclude_prototype=True):
def format_prs(mod_df):
out = []
for idx, row in mod_df.iterrows():
if exclude_prototype and "prototype" in row and row["prototype"]:
continue
modules = idx
# Put "documentation" and "tests" first for sorting to be dece
for last_module in ("documentation", "tests"):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def run(self):
long_description_content_type="text/markdown",
license="BSD",
packages=find_packages(exclude=("test",)),
package_data={package_name: ["*.dll", "*.dylib", "*.so", "prototype/datasets/_builtin/*.categories"]},
package_data={package_name: ["*.dll", "*.dylib", "*.so"]},
zip_safe=False,
install_requires=get_requirements(),
extras_require={
Expand Down
Loading
Loading