From dd5e00c7355612b07550cb8ee3c5f72c26983bd1 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Wed, 21 Jun 2023 10:54:32 +0200 Subject: [PATCH 1/2] Temporarily skip tests for compat table --- spacy/tests/test_cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/tests/test_cli.py b/spacy/tests/test_cli.py index 88d3ffa45..b1b1b8844 100644 --- a/spacy/tests/test_cli.py +++ b/spacy/tests/test_cli.py @@ -697,6 +697,7 @@ def test_string_to_list_intify(value): assert string_to_list(value, intify=True) == [1, 2, 3] +@pytest.mark.skip(reason="Temporarily skip before models are published") def test_download_compatibility(): spec = SpecifierSet("==" + about.__version__) spec.prereleases = False @@ -707,6 +708,7 @@ def test_download_compatibility(): assert get_minor_version(about.__version__) == get_minor_version(version) +@pytest.mark.skip(reason="Temporarily skip before models are published") def test_validate_compatibility_table(): spec = SpecifierSet("==" + about.__version__) spec.prereleases = False From 34971bcbd1606eeeb053b366e645ef5aaa24d211 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Wed, 21 Jun 2023 10:05:00 +0200 Subject: [PATCH 2/2] Set version to v3.6.0 --- spacy/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/about.py b/spacy/about.py index 7c0a59b4e..cad6158da 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -1,6 +1,6 @@ # fmt: off __title__ = "spacy" -__version__ = "3.6.0.dev1" +__version__ = "3.6.0" __download_url__ = "https://github.com/explosion/spacy-models/releases/download" __compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json" __projects__ = "https://github.com/explosion/projects"