Skip to content
This repository was archived by the owner on Jan 13, 2022. It is now read-only.

Commit 6754ba5

Browse files
committed
Do not use powershell, due to PATH handling problems
1 parent bea9d0f commit 6754ba5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

appveyor.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ install:
1616

1717
build_script:
1818
- cmd: python -m cibuildwheel --output-dir wheelhouse
19-
- ps: >-
20-
if ($env:APPVEYOR_REPO_TAG -eq "true") {
19+
- >
20+
IF "%APPVEYOR_REPO_TAG%" == "true"
21+
(
2122
python -m pip install twine
23+
&&
2224
twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing wheelhouse\*
23-
}
25+
)
2426
2527
artifacts:
2628
- path: "wheelhouse\\*.whl"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def generate_sources_includes(dir):
5151

5252
setup(
5353
name = "monetdblite",
54-
version = '0.6.3.dev0',
55-
# version = '0.6.3.dev0+Aug2018.C-d8b1b5e',
54+
version = '0.6.3.dev1',
55+
# version = '0.6.3.dev1+Aug2018.C-d8b1b5e',
5656
description = 'Embedded MonetDB Python Database.',
5757
author = 'Mark Raasveldt, Hannes Mühleisen, Panagiotis Koutsourakis',
5858
author_email = '[email protected]',

0 commit comments

Comments
 (0)