Skip to content

Commit

Permalink
Update dependency versions for pybars and pymeta
Browse files Browse the repository at this point in the history
  • Loading branch information
mjumbewu committed Jan 21, 2014
1 parent 7957f42 commit 4995896
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ of Handlebars.js
Because don't we all want to use the same templates on the client that we do on
the server?

.. image:: https://travis-ci.org/mjumbewu/djangobars.png?branch=master :target: https://travis-ci.org/mjumbewu/djangobars

**NOTE: This project is very early-stage. Try it out, leave feedback and wishes
in the issues. And pull-requests welcome!**

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
django
git+https://github.com/mjumbewu/pymeta.git#egg=pymeta
git+https://github.com/mjumbewu/pybars.git#egg=pybars
git+https://github.com/mjumbewu/pymeta.git@1567444#egg=pymeta==git-1567444
git+https://github.com/mjumbewu/pybars.git@4c8d619#egg=pybars==git-4c8d619

# ==========
# Testing
Expand Down
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
open(join(here, "CHANGES.rst")).read() + "\n\n" +
open(join(here, "TODO.rst")).read())

dependency_links = [
'git+https://github.com/mjumbewu/pymeta.git@1567444#egg=pymeta',
'git+https://github.com/mjumbewu/pybars.git@4c8d619#egg=pybars',
]

def get_version():
fh = open(join(here, "djangobars", "__init__.py"))
try:
Expand All @@ -26,7 +31,7 @@ def get_version():
author_email="mjumbewu@gmail.com",
url="https://github.com/mjumbewu/djangobars/",
packages=find_packages(),
install_requires=["pybars"],
install_requires=["pymeta", "pybars"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
Expand All @@ -35,8 +40,9 @@ def get_version():
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Framework :: Django",
],
)

0 comments on commit 4995896

Please sign in to comment.