Skip to content

Commit 05eb110

Browse files
committed
fix appveyor github release token and errorneous version retrieval
0.1.0-a6
1 parent e761f8f commit 05eb110

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
pyAGE Changelog
33
===============
44

5+
0.1.0-a6 (2022-03-29)
6+
=====================
7+
8+
0.1.0-a4 re-release due to CI scripts failure.
9+
510
0.1.0-a5 (2022-03-29)
611
=====================
712

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ environment:
1515
stack: python %STACK%
1616

1717
install:
18-
- ps: |
19-
$version = &"$($env:PYTHON)\python.exe" -c --% "from pyage import __version__; import sys; _ = sys.stdout.write(__version__)"
20-
Update-AppveyorBuild -Version "$($version)+$($env:APPVEYOR_BUILD_NUMBER)"
2118
- cmd: |
2219
%PYTHON%\python.exe --version
2320
%PYTHON%\Scripts\pip.exe --version
2421
%PYTHON%\python.exe -m pip install -r requirements-dev.txt
22+
- ps: |
23+
$version = &"$($env:PYTHON)\python.exe" -c --% "from pyage.version import __version__; import sys; _ = sys.stdout.write(__version__)"
24+
Update-AppveyorBuild -Version "$($version)+$($env:APPVEYOR_BUILD_NUMBER)"
2525
build_script:
2626
- cmd: |
2727
%PYTHON%\\python.exe setup.py bdist_wheel --universal
@@ -31,7 +31,7 @@ artifacts:
3131

3232
deploy:
3333
auth_token:
34-
secure: PFPMLUtwkaBjEP5FyQP3hgsHMRr5Uejw1eL6aOQKOIl1S1iAx1QcdVpmtZv/FKxC
34+
secure: nDRVQFKcEJ6fVXxCI19uErnRxs6f88vuto7OZ8BYR+GN3fX6pzZzlyBGeKdrKpgA
3535
description: 'pyAGE release, see readme or changelog for more information'
3636
provider: GitHub
3737
artifact: dist/*.whl

pyage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from pyage.event_processor import EventProcessor
1616
from pyage.screen_stack import ScreenStack
1717

18-
__version__: str = "0.1.0-a5"
18+
__version__: str = "0.1.0-a6"
1919

2020
__all__ = (
2121
"App",

0 commit comments

Comments
 (0)