Skip to content

Commit cd0fe76

Browse files
committed
fix testpypi install
1 parent 2239e84 commit cd0fe76

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
- Travis testing for 3.7 (needed OpenSSL, sudo and Xenial)
66
- Fixed:
77
- PyPI wasn't rendering markdown because I didn't tell it what format to use.
8+
- Python 2 wasn't installing via pip because of a new utils package. It has been zapped.
9+
- Maintainers:
810
- TestPyPI version strings count from the latest tagged commit, which should be the last release
9-
- Fix for Python 2 by removing utils package
11+
- Install from TestPyPI works via `make install-testpypi`
1012

1113
## Version 3.0.0
1214
- Breaking:

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,10 @@ clean-temps:
6565
rm -rf $(TEMPS)
6666

6767
install-testpypi:
68-
pip install --index-url https://test.pypi.org/simple/ intervaltree
68+
pip install \
69+
--index-url https://test.pypi.org/simple/ \
70+
--extra-index-url https://pypi.org/simple \
71+
intervaltree
6972

7073
install-pypi:
7174
pip install intervaltree

0 commit comments

Comments
 (0)