Commit 9ad9cb4 1 parent a801749 commit 9ad9cb4 Copy full SHA for 9ad9cb4
File tree 5 files changed +16
-8
lines changed
5 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 50
50
CIBW_SKIP : cp27-win*
51
51
- uses : actions/upload-artifact@v4
52
52
with :
53
- path : ./ wheelhouse/Wikipedia*.whl
54
- name : wikipedia -api-${{ matrix.os }}-${{ matrix.python }}.whl
53
+ path : wheelhouse/Wikipedia*.whl
54
+ name : Wikipedia -api-${{ matrix.os }}-${{ matrix.python }}.whl
55
55
56
56
build_sdist :
57
57
name : Build source dist on ${{ matrix.os }} and ${{ matrix.python }}
80
80
- uses : actions/upload-artifact@v4
81
81
with :
82
82
path : dist/Wikipedia*.tar.gz
83
- name : wikipedia -api-${{ matrix.os }}-${{ matrix.python }}.tar.gz
83
+ name : Wikipedia -api-${{ matrix.os }}-${{ matrix.python }}.tar.gz
84
84
85
85
upload_pypi :
86
86
needs : [build_wheels, build_sdist]
@@ -90,10 +90,18 @@ jobs:
90
90
# alternatively, to publish when a GitHub Release is created, use the following rule:
91
91
# if: github.event_name == 'release' && github.event.action == 'published'
92
92
steps :
93
+ - name : Display structure of downloaded files
94
+ run : ls -R
93
95
- uses : actions/download-artifact@v4
94
96
with :
95
- name : wikipedia -api-*
97
+ name : Wikipedia -api-*
96
98
path : dist
99
+ - uses : actions/download-artifact@v4
100
+ with :
101
+ name : Wikipedia-api-*
102
+ path : wheelhouse
103
+ - name : Display structure of downloaded files
104
+ run : ls -R
97
105
98
106
- uses : pypa/gh-action-pypi-publish@release/v1
99
107
with :
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- 0.6.2
4
+ 0.6.3
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.2 "
64
+ release = "0.6.3 "
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.2 " ,
30
+ version = "0.6.3 " ,
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 , 2 )
9
+ __version__ = (0 , 6 , 3 )
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