Skip to content

Commit bbcf9ed

Browse files
authored
🚀 RELEASE: v0.1.3 (#6)
1 parent fe26ab1 commit bbcf9ed

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed

‎.github/workflows/tests.yml‎

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.7
21-
- uses: pre-commit/action@v2.0.0
20+
python-version: 3.9
21+
- uses: pre-commit/action@v3.0.1
2222

2323
tests:
2424
runs-on: ${{ matrix.os }}
@@ -28,10 +28,10 @@ jobs:
2828
os: [ubuntu-latest, windows-latest]
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v4
3232

3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v2
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737

@@ -46,22 +46,23 @@ jobs:
4646
run: |
4747
pytest --cov=mdformat_deflist --cov-report=xml --cov-report=term-missing
4848
49-
- name: Upload to Codecov
50-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7
51-
uses: codecov/codecov-action@v1
52-
with:
53-
name: pytests-py3.7
54-
flags: pytests
55-
file: ./coverage.xml
56-
fail_ci_if_error: true
49+
# FYI: credentials are not configured. Turned off for now
50+
# - name: Upload to Codecov
51+
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7
52+
# uses: codecov/codecov-action@v1
53+
# with:
54+
# name: pytests-py3.7
55+
# flags: pytests
56+
# file: ./coverage.xml
57+
# fail_ci_if_error: true
5758

5859
pre-commit-hook:
5960
runs-on: ubuntu-latest
6061

6162
steps:
62-
- uses: actions/checkout@v2
63+
- uses: actions/checkout@v4
6364
- name: Set up Python
64-
uses: actions/setup-python@v2
65+
uses: actions/setup-python@v5
6566
with:
6667
python-version: 3.7
6768

@@ -81,9 +82,9 @@ jobs:
8182
runs-on: ubuntu-latest
8283
steps:
8384
- name: Checkout source
84-
uses: actions/checkout@v2
85+
uses: actions/checkout@v4
8586
- name: Set up Python 3.7
86-
uses: actions/setup-python@v1
87+
uses: actions/setup-python@v5
8788
with:
8889
python-version: 3.7
8990
- name: install flit

‎.pre-commit-config.yaml‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.3.0
3+
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # frozen: v5.0.0
44
hooks:
55
- id: end-of-file-fixer
66
- id: mixed-line-ending
77
- id: trailing-whitespace
88
- id: check-yaml
99
- id: check-toml
1010
- repo: https://github.com/pre-commit/pygrep-hooks
11-
rev: v1.9.0
11+
rev: 3a6eb0fadf60b3cccfd80bad9dbb6fae7e47b316 # frozen: v1.10.0
1212
hooks:
1313
- id: python-check-blanket-noqa
14-
- repo: https://github.com/timothycrosley/isort
15-
rev: 5.10.1
14+
- repo: https://github.com/PyCQA/isort
15+
rev: c235f5e450b4b84e58d114ed4c589cbf454175a3 # frozen: 5.13.2
1616
hooks:
1717
- id: isort
1818
- repo: https://github.com/psf/black
19-
rev: 22.8.0
19+
rev: 1b2427a2b785cc4aac97c19bb4b9a0de063f9547 # frozen: 24.10.0
2020
hooks:
2121
- id: black
22-
- repo: https://gitlab.com/pycqa/flake8
23-
rev: 3.9.2
22+
- repo: https://github.com/PyCQA/flake8
23+
rev: e43806be3607110919eff72939fda031776e885a # frozen: 7.1.1
2424
hooks:
2525
- id: flake8
2626
additional_dependencies:
27-
- flake8-bugbear==21.3.2
28-
- flake8-builtins==1.5.3
29-
- flake8-comprehensions==3.4.0
27+
- flake8-bugbear
28+
- flake8-builtins
29+
- flake8-comprehensions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""An mdformat plugin for markdown-it-deflist."""
22

3-
__version__ = "0.1.2"
3+
__version__ = "0.1.3"
44

55
from .plugin import POSTPROCESSORS, RENDERERS, update_mdit # noqa: F401

0 commit comments

Comments
 (0)