From 8594f2f6a8773acc1f143a2f1251d200bd57cef8 Mon Sep 17 00:00:00 2001 From: Trevor Bekolay Date: Mon, 15 Jan 2024 11:36:16 -0600 Subject: [PATCH] Release v1.1.1 --- .github/workflows/ci.yml | 2 ++ .nengobones.yml | 4 ++-- CHANGES.rst | 6 ++++-- pytest_plt/version.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 580b4b0..d68e032 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,8 @@ jobs: echo '${{ secrets.PYPIRC_FILE }}' > ~/.pypirc - uses: actions/checkout@v3 - uses: nengo/nengo-bones/actions/setup@main + with: + python-version: ${{ matrix.python-version || '3.9' }} - uses: nengo/nengo-bones/actions/generate-and-check@main - uses: nengo/nengo-bones/actions/run-script@main with: diff --git a/.nengobones.yml b/.nengobones.yml index 717d632..fca4924 100644 --- a/.nengobones.yml +++ b/.nengobones.yml @@ -25,7 +25,7 @@ setup_py: - numpydoc>=0.9.2 - sphinx tests_req: - - pytest-cov # required since `addopts = --cov` in setup.cfg + - pytest-cov # required since `addopts = --cov` in setup.cfg entry_points: pytest11: - "plt = pytest_plt.plugin" @@ -77,4 +77,4 @@ version_py: major: 1 minor: 1 patch: 1 - release: false + release: true diff --git a/CHANGES.rst b/CHANGES.rst index 8976dc8..e50574e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,8 +19,8 @@ Release History - Removed - Fixed -1.1.1 (unreleased) -================== +1.1.1 (January 15, 2024) +======================== **Changed** @@ -30,8 +30,10 @@ Release History - Config options are now properly added to Pytest, eliminating a warning that was raised if a config option was set. (`#26`_) +- Handled multiple outputs when mocking out ``plt.subplots``. (`#29`_) .. _#26: https://github.com/nengo/pytest-plt/pull/26 +.. _#29: https://github.com/nengo/pytest-plt/pull/29 1.1.0 (August 17, 2020) ======================= diff --git a/pytest_plt/version.py b/pytest_plt/version.py index b344ac7..58dfa82 100644 --- a/pytest_plt/version.py +++ b/pytest_plt/version.py @@ -14,7 +14,7 @@ version_info = (1, 1, 1) name = "pytest-plt" -dev = 0 +dev = None # use old string formatting, so that this can still run in Python <= 3.5 # (since this file is parsed in setup.py, before python_requires is applied)