File tree Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
1
2
version : 2
2
3
updates :
3
4
- package-ecosystem : " pip"
Original file line number Diff line number Diff line change 28
28
user : __token__
29
29
password : ${{ secrets.PYPI_API_TOKEN }}
30
30
31
+ - name : Test publish package
32
+ uses : pypa/gh-action-pypi-publish@release/v1
33
+ with :
34
+ user : __token__
35
+ password : ${{ secrets.PYPI_API_TOKEN }}
36
+ repository-url : https://test.pypi.org/legacy/
37
+
31
38
- name : Create GitHub Release
32
39
env :
33
40
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " realpython-reader"
7
- version = " 1.1.2 "
7
+ version = " 1.1.3 "
8
8
description = " Read the latest Real Python tutorials"
9
9
readme = " README.md"
10
10
authors = [{ name = " Real Python" , email = " info@realpython.com" }]
@@ -31,7 +31,7 @@ requires-python = ">=3.7"
31
31
32
32
33
33
[tool .bumpver ]
34
- current_version = " 1.1.2 "
34
+ current_version = " 1.1.3 "
35
35
version_pattern = " MAJOR.MINOR.PATCH"
36
36
commit_message = " bump version {old_version} -> {new_version}"
37
37
commit = true
Original file line number Diff line number Diff line change 19
19
20
20
21
21
# Version of realpython-reader package
22
- __version__ = "1.1.2 "
22
+ __version__ = "1.1.3 "
23
23
24
24
# Read URL of the Real Python feed from config file
25
25
_cfg = tomllib .loads (resources .read_text ("reader" , "config.toml" ))
Original file line number Diff line number Diff line change 40
40
Version:
41
41
--------
42
42
43
- - realpython-reader v1.1.2
43
+ - realpython-reader v1.1.3
44
44
"""
45
45
# Standard library imports
46
46
import sys
You can’t perform that action at this time.
0 commit comments