Skip to content

Commit

Permalink
Fix Travis CI OSX dpl python2.7 get-pip.py error
Browse files Browse the repository at this point in the history
  • Loading branch information
ifduyue committed Apr 14, 2021
1 parent e269e53 commit f987add
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ script:
./bench.sh
fi
before_deploy:
- ls dist/
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
python3 -m venv ~/venv;
source ~/venv/bin/activate;
fi

deploy:
# deploy master non-tags to Test PyPI
- provider: pypi
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
-----------

v2.0.2 2021-04-15
~~~~~~~~~~~~~~~~~

- Fix Travis CI OSX dpl python2.7 get-pip.py error

v2.0.1 2021-04-15
~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion xxhash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
XXHASH_VERSION,
)

VERSION = "2.0.1"
VERSION = "2.0.2"


xxh128 = xxh3_128
Expand Down

0 comments on commit f987add

Please sign in to comment.