Skip to content

Commit bb31865

Browse files
authored
Version 3.0.1 release (#60)
1 parent 50b06c3 commit bb31865

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- "3.12"
2323
- "3.13"
2424
- "3.14"
25+
- "3.14t"
2526

2627
- "pypy-3.10"
2728
- "pypy-3.11"
@@ -53,6 +54,8 @@ jobs:
5354

5455
- name: Set up python
5556
uses: actions/setup-python@v6
57+
with:
58+
python-version: '3.13'
5659

5760
- name: Install project and deps
5861
run: |
@@ -72,7 +75,7 @@ jobs:
7275
fail-fast: false
7376
matrix:
7477
python-version:
75-
- "3.10"
78+
- "3.13"
7679
steps:
7780
- uses: actions/checkout@v5
7881

@@ -82,7 +85,7 @@ jobs:
8285
python-version: ${{ matrix.python-version }}
8386

8487
- name: Install project and deps
85-
run: python setup.py install
88+
run: pip install .
8689

8790
- name: Run tests
8891
run: |

eradicate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import re
2929
import tokenize
3030

31-
__version__ = '3.0.0'
31+
__version__ = '3.0.1'
3232

3333

3434
class Eradicator:

0 commit comments

Comments
 (0)