Skip to content

Commit 0ab9a43

Browse files
committed
Update version to 0.6.7 for new release.
1 parent 15b6455 commit 0ab9a43

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

.github/workflows/deploy.yml

+14-4
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,26 @@ jobs:
9191
# if: github.event_name == 'release' && github.event.action == 'published'
9292
environment:
9393
name: pypi
94-
url: https://pypi.org/p/<your-pypi-project-name>
94+
url: https://pypi.org/p/Wikipedia-API
9595
permissions:
9696
id-token: write
9797
steps:
98-
- uses: actions/download-artifact@v4
98+
- name: Download Artifacts
99+
uses: actions/download-artifact@v4
99100
with:
100101
pattern: Wikipedia-api-*
101-
path: dist
102+
path: downloaded
102103
- 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
104114
- uses: pypa/[email protected]
105115
with:
106116
verbose: true

CHANGES.rst

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

4-
0.6.6
4+
0.6.7
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.6"
64+
release = "0.6.7"
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.6",
30+
version="0.6.7",
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, 6)
9+
__version__ = (0, 6, 7)
1010
from collections import defaultdict
1111
from enum import IntEnum
1212
import logging

0 commit comments

Comments
 (0)