Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
- Bump to version 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Feb 10, 2020
1 parent 486d4e2 commit 7c829cc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.0.3 [2020-02-10]
------------------

* [Users Avatar and Groups Logo appear as broken img](https://github.com/GeoNode/geonode-avatar/issues/7)

3.0.2 [2020-01-16]
------------------

Expand Down
24 changes: 14 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
try: # for pip >= 10
from pip._internal.req import parse_requirements
from pip._internal.download import PipSession
try:
from pip._internal.download import PipSession
pip_session = PipSession()
except ImportError: # for pip >= 20
from pip._internal.network.session import PipSession
pip_session = PipSession()
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
from pip.download import PipSession
try:
from pip.req import parse_requirements
from pip.download import PipSession
pip_session = PipSession()
except ImportError: # backup in case of further pip changes
pip_session = 'hack'

from setuptools import setup, find_packages

version = '3.0.2'
version = '3.0.3'

# Parse requirements.txt to get the list of dependencies
inst_req = parse_requirements('requirements.txt',
session=PipSession())
REQUIREMENTS = [str(r.req) for r in inst_req]

# Parse requirements.txt to get the list of dependencies
inst_req = parse_requirements('requirements.txt',
session=PipSession())
session=pip_session)
REQUIREMENTS = [str(r.req) for r in inst_req]

LONG_DESCRIPTION = """
Expand Down

0 comments on commit 7c829cc

Please sign in to comment.