Skip to content

Commit f987add

Browse files
committed
Fix Travis CI OSX dpl python2.7 get-pip.py error
1 parent e269e53 commit f987add

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ script:
9494
./bench.sh
9595
fi
9696
97+
before_deploy:
98+
- ls dist/
99+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
100+
python3 -m venv ~/venv;
101+
source ~/venv/bin/activate;
102+
fi
103+
97104
deploy:
98105
# deploy master non-tags to Test PyPI
99106
- provider: pypi

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
-----------
33

4+
v2.0.2 2021-04-15
5+
~~~~~~~~~~~~~~~~~
6+
7+
- Fix Travis CI OSX dpl python2.7 get-pip.py error
48

59
v2.0.1 2021-04-15
610
~~~~~~~~~~~~~~~~~

xxhash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
XXHASH_VERSION,
1919
)
2020

21-
VERSION = "2.0.1"
21+
VERSION = "2.0.2"
2222

2323

2424
xxh128 = xxh3_128

0 commit comments

Comments
 (0)