Skip to content

Commit dc9bb35

Browse files
authored
πŸš§πŸš€ Prepare 0.5.3 release (#295)
* 🚧 Bumped version from 0.5.2 to 0.5.3 * πŸš§πŸ“š Added changes to changelog * πŸš‡ Deactivate nightly tests until flake8>=6 compat is added
1 parent cb99897 commit dc9bb35

File tree

3 files changed

+35
-30
lines changed

3 files changed

+35
-30
lines changed

β€Ž.github/workflows/test.yml

+29-29
Original file line numberDiff line numberDiff line change
@@ -92,35 +92,35 @@ jobs:
9292
- name: Build docs
9393
run: make --directory=docs clean_all linkcheck
9494

95-
flake8-nightly:
96-
runs-on: ubuntu-latest
97-
needs: [pre-commit, docs]
95+
# flake8-nightly:
96+
# runs-on: ubuntu-latest
97+
# needs: [pre-commit, docs]
9898

99-
steps:
100-
- uses: actions/checkout@v3
101-
- name: Set up Python 3.7
102-
uses: actions/setup-python@v4
103-
with:
104-
python-version: 3.7
105-
- name: Install dependencies
106-
env:
107-
TOX_ENV_NAME: flake8-nightly
108-
run: |
109-
python -m pip install -U pip
110-
python -m pip install -U -r requirements_dev.txt
111-
pip install .
112-
python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8
113-
- name: Show flake8 version
114-
run: |
115-
pip freeze | grep flake8
116-
- name: Run tests
117-
run: |
118-
python -m pytest -vv
119-
- name: Codecov Upload
120-
uses: codecov/codecov-action@v3
121-
with:
122-
file: ./coverage.xml
123-
name: flake8-nightly
99+
# steps:
100+
# - uses: actions/checkout@v3
101+
# - name: Set up Python 3.7
102+
# uses: actions/setup-python@v4
103+
# with:
104+
# python-version: 3.7
105+
# - name: Install dependencies
106+
# env:
107+
# TOX_ENV_NAME: flake8-nightly
108+
# run: |
109+
# python -m pip install -U pip
110+
# python -m pip install -U -r requirements_dev.txt
111+
# pip install .
112+
# python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8
113+
# - name: Show flake8 version
114+
# run: |
115+
# pip freeze | grep flake8
116+
# - name: Run tests
117+
# run: |
118+
# python -m pytest -vv
119+
# - name: Codecov Upload
120+
# uses: codecov/codecov-action@v3
121+
# with:
122+
# file: ./coverage.xml
123+
# name: flake8-nightly
124124

125125
flake8-legacy:
126126
runs-on: ubuntu-latest
@@ -181,7 +181,7 @@ jobs:
181181
deploy:
182182
runs-on: ubuntu-latest
183183
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
184-
needs: [test, flake8-nightly, flake8-legacy]
184+
needs: [test, flake8-legacy]
185185
steps:
186186
- uses: actions/checkout@v3
187187
- name: Set up Python 3.7

β€Žchangelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.5.3 (2023-03-28)
4+
5+
- ✨ Official python 3.11 support [#291](https://github.com/s-weigand/flake8-nb/pull/291)
6+
- 🩹 Fixed bug with pre-commit-ci due to read-only filesystem by @lkeegan in [#290](https://github.com/s-weigand/flake8-nb/pull/290)
7+
38
## 0.5.2 (2022-08-17)
49

510
- 🩹 Fix config file discovery with flake8>=5.0.0 [#255](https://github.com/s-weigand/flake8-nb/pull/255)

β€Žflake8_nb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Sebastian Weigand"""
44
__email__ = "s.weigand.phy@gmail.com"
5-
__version__ = "0.5.2"
5+
__version__ = "0.5.3"
66

77
import flake8
88

0 commit comments

Comments
Β (0)