Skip to content

Commit

Permalink
pip is now emitting a warning on appveyor, which appears to break pow…
Browse files Browse the repository at this point in the history
…ershell installing twine, and hence uploads.
  • Loading branch information
jamadden committed Jun 16, 2020
1 parent 9eb0b5a commit 8cca384
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ after_test:
# https://ci.appveyor.com/project/denik/gevent/builds/23810605/job/83aw4u67artt002b#L602
# So we violate DRY and repeate some requirements in order to use
# --no-build-isolation
- "%CMD_IN_ENV% %PYEXE% -m pip install --pre wheel cython setuptools cffi"
- "%CMD_IN_ENV% %PYEXE% -m pip install --pre wheel cython setuptools cffi twine"
- "%CMD_IN_ENV% %PYEXE% -m pip wheel --no-build-isolation . -w dist"
- ps: "ls dist"

Expand All @@ -204,6 +204,6 @@ artifacts:


deploy_script:
- ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { pip install twine; twine upload --skip-existing dist/gevent* }
- ps: if ($env:APPVEYOR_REPO_TAG -eq $TRUE) { twine upload --skip-existing dist/gevent* }

deploy: on
12 changes: 6 additions & 6 deletions scripts/releases/geventreleases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ mkdir /tmp/gevent/


# 2.7 is a python.org build, builds a 10_6_intel wheel
./geventrel.sh /usr/local/bin/python2.7 &
./geventrel.sh /usr/local/bin/python2.7

# 3.5 is a python.org build, builds a 10_6_intel wheel
./geventrel.sh /usr/local/bin/python3.5 &
./geventrel.sh /usr/local/bin/python3.5

# 3.6 is a python.org build, builds a 10_6_intel wheel
./geventrel.sh /usr/local/bin/python3.6 &
./geventrel.sh /usr/local/bin/python3.6

# 3.7 is a python.org build, builds a 10_6_intel wheel
./geventrel.sh /usr/local/bin/python3.7 &
./geventrel.sh /usr/local/bin/python3.8 &
./geventrel.sh /usr/local/bin/python3.7
./geventrel.sh /usr/local/bin/python3.8


# PyPy 4.0
./geventrel.sh `which pypy` &
./geventrel.sh `which pypy`

wait

0 comments on commit 8cca384

Please sign in to comment.