Commit 0ab9a43 1 parent 15b6455 commit 0ab9a43 Copy full SHA for 0ab9a43
File tree 5 files changed +18
-8
lines changed
5 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -91,16 +91,26 @@ jobs:
91
91
# if: github.event_name == 'release' && github.event.action == 'published'
92
92
environment :
93
93
name : pypi
94
- url : https://pypi.org/p/<your-pypi-project-name>
94
+ url : https://pypi.org/p/Wikipedia-API
95
95
permissions :
96
96
id-token : write
97
97
steps :
98
- - uses : actions/download-artifact@v4
98
+ - name : Download Artifacts
99
+ uses : actions/download-artifact@v4
99
100
with :
100
101
pattern : Wikipedia-api-*
101
- path : dist
102
+ path : downloaded
102
103
- name : Display structure of downloaded files
103
- run : ls -R
104
+ run : ls -lR downloaded
105
+ - name : Prepare distribution structure
106
+ run : |
107
+ mkdir -p dist
108
+ for f in $( find downloaded -type f );
109
+ d=$( dirname ${f} | rev | cut -d'/' -f 1 | rev );
110
+ cp -v ${f} dist/${d};
111
+ done
112
+ - name : Display structure of dist files
113
+ run : ls -lR dist
104
114
105
115
with :
106
116
verbose : true
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- 0.6.6
4
+ 0.6.7
5
5
-----
6
6
7
7
* Update dependencies
Original file line number Diff line number Diff line change 61
61
# The short X.Y version.
62
62
version = "0.6"
63
63
# The full version, including alpha/beta/rc tags.
64
- release = "0.6.6 "
64
+ release = "0.6.7 "
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def fix_doc(txt):
27
27
28
28
setup (
29
29
name = "Wikipedia-API" ,
30
- version = "0.6.6 " ,
30
+ version = "0.6.7 " ,
31
31
description = "Python Wrapper for Wikipedia" ,
32
32
long_description = README + "\n \n " + CHANGES ,
33
33
classifiers = [
Original file line number Diff line number Diff line change 6
6
cases.
7
7
"""
8
8
9
- __version__ = (0 , 6 , 6 )
9
+ __version__ = (0 , 6 , 7 )
10
10
from collections import defaultdict
11
11
from enum import IntEnum
12
12
import logging
You can’t perform that action at this time.
0 commit comments