aboutsummaryrefslogtreecommitdiffstats
path: root/fabfile.py
Commit message (Collapse)AuthorAgeFilesLines
* Switched testing to tox.Waylan Limberg2013-03-011-105/+0
| | | | | | | | | | Also scrapped fabfile.py and replaced it with a much simpler makefile. Tox does most of the stuff that was in fabfile.py anyway. Now that everything runs in all supported python versions without using 2to3, we don't need to wait for tox to support it.
* Merge branch '2and3'Waylan Limberg2013-02-271-4/+0
|\
| * Now using universal code for Python 2 & 3.Waylan Limberg2013-02-271-4/+0
| | | | | | | | | | | | | | | | | | | | The most notable changes are the use of unicode_literals and absolute_imports. Actually, absolute_imports was the biggest deal as it gives us relative imports. For the first time extensions import markdown relative to themselves. This allows other packages to embed the markdown lib in a subdir of their project and still be able to use our extensions.
* | Update tests to only run on supported versions of python.Waylan Limberg2013-02-251-1/+1
|/
* Github no longer offers Downloads - no need to upload any.Waylan Limberg2013-01-101-62/+0
|
* Testing framework now runs on Python 2 & 3 unmodified.Waylan Limberg2012-12-141-2/+1
|
* Upped version to 2.3.dev.Waylan Limberg2012-12-051-1/+1
| | | | | Also refactored the version info to force PEP 386 compliance and to avoid the need to change the version in both the source and setup.py
* Upped version to 2.2.1.Waylan Limberg2012-11-041-1/+1
|
* Fixed the fabfile geterate_test(s) commands so they actually import the ↵Waylan Limberg2011-08-171-2/+6
| | | | testing framework.
* Added some fadfile commands to (re)generate tests when they are added or ↵Waylan Limberg2011-08-041-0/+16
| | | | updated.
* Added 'fab clean' command.Waylan Limberg2011-08-031-0/+4
|
* rename command 'fab do_release' -> 'fad deploy_release'Waylan Limberg2011-08-031-1/+1
|
* Updated fabfile to automate deploying a release. Includes building a release ↵Waylan Limberg2011-08-031-2/+81
| | | | distribution, registering it with PyPI and uploading donwloads to PyPI and Github.
* Added doctests to fabfile and edited them to pass in all supported versions ↵Waylan Limberg2011-08-021-0/+1
| | | | of python. Note: one test (meta) is still failing on Python 3 due to unicode strings.
* Added fabfile as a script to automate various common mainentance tasks. ↵Waylan Limberg2011-07-241-0/+68
Currently only automates testing (makes 2to3 testing easier). More featurs to come.