diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9fb08a827..a91cfe180 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,8 +32,7 @@ jobs: matrix: os: - windows-latest - - macos-12 - - macos-13 + - macos-latest python-version: - "3.7" - "3.8" diff --git a/pymoo/version.py b/pymoo/version.py index 43c4ab005..1cbd38e3b 100644 --- a/pymoo/version.py +++ b/pymoo/version.py @@ -1 +1 @@ -__version__ = "0.6.1" +__version__ = "0.6.1.1" diff --git a/tests/test_docs.py b/tests/test_docs.py index 4b2ee629a..607595510 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -15,7 +15,7 @@ @pytest.mark.long @pytest.mark.parametrize('ipynb', IPYNBS) def test_docs(ipynb, pytestconfig): - overwrite = pytestconfig.getoption("overwrite", True) + overwrite = pytestconfig.getoption("overwrite", False) KERNEL = start_new_kernel(kernel_name='python3') run_ipynb(KERNEL, ipynb, overwrite=overwrite, remove_trailing_empty_cells=True) assert True