File tree 4 files changed +22
-17
lines changed
4 files changed +22
-17
lines changed Original file line number Diff line number Diff line change 14
14
with :
15
15
fetch-depth : 0
16
16
17
- - name : Build SDist and wheel
18
- run : pipx run build
19
-
20
- - uses : actions/upload-artifact@v4
21
- with :
22
- path : dist/*
23
-
24
- - name : Check metadata
25
- run : pipx run twine check dist/*
17
+ - uses : hynek/build-and-inspect-python-package@v2
26
18
27
19
publish :
28
20
needs : [dist]
40
32
name : artifact
41
33
path : dist
42
34
35
+ - name : List distributions to be deployed
36
+ run : ls -l dist/
37
+
43
38
- uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -38,20 +38,16 @@ jobs:
38
38
allow-prereleases : true
39
39
40
40
- name : Install removestar (lite)
41
- run : |
42
- python -m pip install -e ".[dev]"
41
+ run : python -m pip install -e ".[dev]"
43
42
44
43
- name : Test removestar (lite)
45
- run : |
46
- pytest --cov=removestar . -vv
44
+ run : pytest --cov=removestar . -vv
47
45
48
46
- name : Install removestar (nb)
49
- run : |
50
- python -m pip install -e ".[dev,nb]"
47
+ run : python -m pip install -e ".[dev,nb]"
51
48
52
49
- name : Test removestar (nb)
53
- run : |
54
- pytest --cov=removestar . -vv
50
+ run : pytest --cov=removestar . -vv
55
51
56
52
- name : Upload coverage report
57
53
Original file line number Diff line number Diff line change
1
+ # 1.5.2 (2024-11-25)
2
+
3
+ ## Features
4
+
5
+ - Python 3.13 support
6
+
7
+ ## Maintenance
8
+
9
+ - Get rid of deprecated actions
10
+ - Add dependabot config
11
+ - pre-commit autoupdate
12
+
1
13
# 1.5.1 (2024-08-14)
2
14
3
15
## Fixes
Original file line number Diff line number Diff line change @@ -22,11 +22,13 @@ classifiers = [
22
22
" Operating System :: OS Independent" ,
23
23
" Programming Language :: Python" ,
24
24
" Programming Language :: Python :: 3 :: Only" ,
25
+ " Programming Language :: Python :: 3.7" ,
25
26
" Programming Language :: Python :: 3.8" ,
26
27
" Programming Language :: Python :: 3.9" ,
27
28
" Programming Language :: Python :: 3.10" ,
28
29
" Programming Language :: Python :: 3.11" ,
29
30
" Programming Language :: Python :: 3.12" ,
31
+ " Programming Language :: Python :: 3.13" ,
30
32
]
31
33
dependencies = [
32
34
" pyflakes" ,
You can’t perform that action at this time.
0 commit comments