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

Commit

Permalink
Bugfixed deps, bump version to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
adw0rd committed Apr 28, 2015
1 parent 768cab1 commit 1dd2859
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion marcus/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.1"
__version__ = "0.6.2"
Binary file added marcus/static/images/piter-404.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ httplib2>=0.7.4
python-openid>=2.2.5
markdown2>=2.0.1

#-e git://github.com/adw0rd/scipio.git#egg=scipio
-e http://github.com/adw0rd/scipio/tarball/master#egg=scipio
-e git://github.com/adw0rd/pingdjack.git@0.1#egg=pingdjack
--allow-external -e http://github.com/adw0rd/scipio/tarball/master#egg=scipio
--allow-external -e git://github.com/adw0rd/pingdjack.git@0.1#egg=pingdjack

# wordpress_importer command required:
html2text>=3.200.3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def run(self):
if "#egg" in line:
names = re.findall('#egg=([^-]+)-?', line)
install_requires.append(names[0])
links = line.split()
dependency_links.append(links[1])
links = [link for link in line.split() if '://' in link]
dependency_links.append(links[0])
else:
install_requires.append(line)
if "Django" in line:
Expand Down

0 comments on commit 1dd2859

Please sign in to comment.