Skip to content

Commit

Permalink
πŸš§πŸš€ Prepare 0.5.3 release (#295)
Browse files Browse the repository at this point in the history
* 🚧 Bumped version from 0.5.2 to 0.5.3

* πŸš§πŸ“š Added changes to changelog

* πŸš‡ Deactivate nightly tests until flake8>=6 compat is added
  • Loading branch information
s-weigand authored Mar 28, 2023
1 parent cb99897 commit dc9bb35
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 30 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion flake8_nb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Sebastian Weigand"""
__email__ = "[email protected]"
__version__ = "0.5.2"
__version__ = "0.5.3"

import flake8

Expand Down

0 comments on commit dc9bb35

Please sign in to comment.