From dc9bb35e89278999de3ffe7184600fc037225c5c Mon Sep 17 00:00:00 2001 From: Sebastian Weigand Date: Tue, 28 Mar 2023 12:59:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=F0=9F=9A=80=20Prepare=200.5.3=20re?= =?UTF-8?q?lease=20(#295)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 🚧 Bumped version from 0.5.2 to 0.5.3 * 🚧📚 Added changes to changelog * 🚇 Deactivate nightly tests until flake8>=6 compat is added --- .github/workflows/test.yml | 58 +++++++++++++++++++------------------- changelog.md | 5 ++++ flake8_nb/__init__.py | 2 +- 3 files changed, 35 insertions(+), 30 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c01123..29e2df1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -92,35 +92,35 @@ jobs: - name: Build docs run: make --directory=docs clean_all linkcheck - flake8-nightly: - runs-on: ubuntu-latest - needs: [pre-commit, docs] + # flake8-nightly: + # runs-on: ubuntu-latest + # needs: [pre-commit, docs] - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.7 - uses: actions/setup-python@v4 - with: - python-version: 3.7 - - name: Install dependencies - env: - TOX_ENV_NAME: flake8-nightly - run: | - python -m pip install -U pip - python -m pip install -U -r requirements_dev.txt - pip install . - python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8 - - name: Show flake8 version - run: | - pip freeze | grep flake8 - - name: Run tests - run: | - python -m pytest -vv - - name: Codecov Upload - uses: codecov/codecov-action@v3 - with: - file: ./coverage.xml - name: flake8-nightly + # steps: + # - uses: actions/checkout@v3 + # - name: Set up Python 3.7 + # uses: actions/setup-python@v4 + # with: + # python-version: 3.7 + # - name: Install dependencies + # env: + # TOX_ENV_NAME: flake8-nightly + # run: | + # python -m pip install -U pip + # python -m pip install -U -r requirements_dev.txt + # pip install . + # python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8 + # - name: Show flake8 version + # run: | + # pip freeze | grep flake8 + # - name: Run tests + # run: | + # python -m pytest -vv + # - name: Codecov Upload + # uses: codecov/codecov-action@v3 + # with: + # file: ./coverage.xml + # name: flake8-nightly flake8-legacy: runs-on: ubuntu-latest @@ -181,7 +181,7 @@ jobs: deploy: runs-on: ubuntu-latest if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') - needs: [test, flake8-nightly, flake8-legacy] + needs: [test, flake8-legacy] steps: - uses: actions/checkout@v3 - name: Set up Python 3.7 diff --git a/changelog.md b/changelog.md index 6cf6d27..d3b84bf 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 0.5.3 (2023-03-28) + +- ✨ Official python 3.11 support [#291](https://github.com/s-weigand/flake8-nb/pull/291) +- 🩹 Fixed bug with pre-commit-ci due to read-only filesystem by @lkeegan in [#290](https://github.com/s-weigand/flake8-nb/pull/290) + ## 0.5.2 (2022-08-17) - 🩹 Fix config file discovery with flake8>=5.0.0 [#255](https://github.com/s-weigand/flake8-nb/pull/255) diff --git a/flake8_nb/__init__.py b/flake8_nb/__init__.py index 87b9a47..b203bad 100644 --- a/flake8_nb/__init__.py +++ b/flake8_nb/__init__.py @@ -2,7 +2,7 @@ __author__ = """Sebastian Weigand""" __email__ = "s.weigand.phy@gmail.com" -__version__ = "0.5.2" +__version__ = "0.5.3" import flake8