Skip to content

Commit

Permalink
Finalizing changes in preparation for 2.2.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pedersen committed Aug 24, 2012
1 parent 0aeb787 commit 2b600f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions devtools/templates/turbogears/setup.cfg_tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ onepass = true
[aliases]
# A handy alias to make a release to pypi
release = egg_info -RDb "" sdist bdist_egg register upload
{{package}}develop = develop -i http://tg.gy/220rc2
{{package}}deps = easy_install -i http://tg.gy/220rc2 AddOns BytecodeAssembler Chameleon coverage DecoratorTools Extremes Genshi Jinja2 Kajiki kid PEAK_Rules repoze.tm2 repoze.who repoze.who_friendlyform repoze.who.plugins.sa simplegeneric sprox SQLAlchemy SymbolType tgext.admin tgext.crud ToscaWidgets transaction TurboJson TurboKid tw.forms zope.interface zope.sqlalchemy
tgupgrade = easy_install -i http://tg.gy/beta -U AddOns Babel Beaker BytecodeAssembler Chameleon coverage decorator DecoratorTools Extremes Genshi Jinja2 Kajiki kid Mako MarkupSafe nose Paste PasteDeploy PasteScript PEAK_Rules Pygments Pylons repoze.tm2 repoze.who repoze.who_friendlyform repoze.who.plugins.sa simplegeneric simplejson sprox SQLAlchemy SymbolType Tempita tgext.admin tgext.crud ToscaWidgets transaction TurboJson TurboKid tw.forms WebError WebFlash WebHelpers WebOb WebTest zope.interface zope.sqlalchemy
{{package}}develop = develop -i http://tg.gy/220
{{package}}deps = easy_install -i http://tg.gy/220 AddOns BytecodeAssembler Chameleon coverage DecoratorTools Extremes Genshi Jinja2 Kajiki kid PEAK_Rules repoze.tm2 repoze.who repoze.who_friendlyform repoze.who.plugins.sa simplegeneric sprox SQLAlchemy SymbolType tgext.admin tgext.crud ToscaWidgets transaction TurboJson TurboKid tw.forms zope.interface zope.sqlalchemy
tgupgrade = easy_install -i http://tg.gy/current -U AddOns Babel Beaker BytecodeAssembler Chameleon coverage decorator DecoratorTools Extremes Genshi Jinja2 Kajiki kid Mako MarkupSafe nose Paste PasteDeploy PasteScript PEAK_Rules Pygments Pylons repoze.tm2 repoze.who repoze.who_friendlyform repoze.who.plugins.sa simplegeneric simplejson sprox SQLAlchemy SymbolType Tempita tgext.admin tgext.crud ToscaWidgets transaction TurboJson TurboKid tw.forms WebError WebFlash WebHelpers WebOb WebTest zope.interface zope.sqlalchemy
4 changes: 2 additions & 2 deletions devtools/templates/turbogears/setup.py_tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ testpkgs=['WebTest >= 1.2.3',
'wsgiref',
]
install_requires=[
"TurboGears2 >= 2.2.0rc2",
"TurboGears2 >= 2.2.0",
"Genshi",
{{if mako == 'True'}}
"Mako",
Expand Down Expand Up @@ -99,7 +99,7 @@ setup(
main = pylons.util:PylonsInstaller
""",
dependency_links=[
"http://tg.gy/220rc2"
"http://tg.gy/220"
],
zip_safe=False
)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
]

install_requirements = [
'TurboGears2 >= 2.2.0rc2',
'TurboGears2 >= 2.2.0',
]

setup(
name='tg.devtools',
version="2.2.0rc2",
version="2.2.0",
description="",
long_description="""""",
classifiers=[],
Expand Down Expand Up @@ -51,6 +51,6 @@
test_suite='nose.collector',
tests_require = test_requirements,
dependency_links=[
"http://tg.gy/220rc2"
"http://tg.gy/220"
]
)

0 comments on commit 2b600f1

Please sign in to comment.