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

Commit c37b0b9

Browse files
committed
Try uploading windows wheels with powershell syntax again
1 parent 3e9e1f4 commit c37b0b9

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

appveyor.yml

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

1717
build_script:
1818
- cmd: python -m cibuildwheel --output-dir wheelhouse
19-
- >
20-
IF "%APPVEYOR_REPO_TAG%" == "true"
21-
(
22-
python -m pip install twine
23-
&&
24-
python -m twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing wheelhouse\*
25-
)
19+
- ps: >-
20+
if ($env:APPVEYOR_REPO_TAG -eq "true") {
21+
python -m pip install twine
22+
python -m twine upload --repository-url https://test.pypi.org/legacy/ --skip-existing wheelhouse\*
23+
}
2624
2725
artifacts:
2826
- 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.dev1',
55-
# version = '0.6.3.dev1+Aug2018.C-d8b1b5e',
54+
version = '0.6.3.dev2',
55+
# version = '0.6.3.dev2+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)