Skip to content
This repository has been archived by the owner on Sep 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #155 from agraubert/hotfix
Browse files Browse the repository at this point in the history
Fixed source distributions
  • Loading branch information
agraubert committed May 3, 2018
2 parents e4bfea9 + 380a379 commit 1506914
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.0.1

* Fixed `setup.py` to allow source builds on pip 10

## 3.0.0

### agutil (main module)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A collection of python utilities

__Version:__ 3.0.0
__Version:__ 3.0.1

###### Tools:
* search_range (A utility for manipulating numerical ranges)
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from setuptools import setup
from pip.req import parse_requirements
try:
from pip.req import parse_requirements
except ModuleNotFoundError:
from pip._internal.req import parse_requirements

import sys
if sys.version_info<(3,3):
Expand Down

0 comments on commit 1506914

Please sign in to comment.