Skip to content

Commit 9ad9cb4

Browse files
committed
Update version to 0.6.3 for new release.
1 parent a801749 commit 9ad9cb4

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

.github/workflows/deploy.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
CIBW_SKIP: cp27-win*
5151
- uses: actions/upload-artifact@v4
5252
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
5555

5656
build_sdist:
5757
name: Build source dist on ${{ matrix.os }} and ${{ matrix.python }}
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/upload-artifact@v4
8181
with:
8282
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
8484

8585
upload_pypi:
8686
needs: [build_wheels, build_sdist]
@@ -90,10 +90,18 @@ jobs:
9090
# alternatively, to publish when a GitHub Release is created, use the following rule:
9191
# if: github.event_name == 'release' && github.event.action == 'published'
9292
steps:
93+
- name: Display structure of downloaded files
94+
run: ls -R
9395
- uses: actions/download-artifact@v4
9496
with:
95-
name: wikipedia-api-*
97+
name: Wikipedia-api-*
9698
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
97105

98106
- uses: pypa/gh-action-pypi-publish@release/v1
99107
with:

CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
0.6.2
4+
0.6.3
55
-----
66

77
* Update dependencies

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = "0.6"
6363
# The full version, including alpha/beta/rc tags.
64-
release = "0.6.2"
64+
release = "0.6.3"
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def fix_doc(txt):
2727

2828
setup(
2929
name="Wikipedia-API",
30-
version="0.6.2",
30+
version="0.6.3",
3131
description="Python Wrapper for Wikipedia",
3232
long_description=README + "\n\n" + CHANGES,
3333
classifiers=[

wikipediaapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
cases.
77
"""
88

9-
__version__ = (0, 6, 2)
9+
__version__ = (0, 6, 3)
1010
from collections import defaultdict
1111
from enum import IntEnum
1212
import logging

0 commit comments

Comments
 (0)