summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Declare test deps for Travis correctly.HEAD0.7masterVincent Driessen2014-08-241-2/+2
|
* Add compat note and shrink README.Vincent Driessen2014-08-241-24/+13
|
* Declare test deps correctly.Vincent Driessen2014-08-243-3/+4
|
* Also target Python 3.4 on Travis.Vincent Driessen2014-08-241-0/+1
|
* Bump version to 0.7.Vincent Driessen2014-08-231-1/+1
|
* Add note on maintenance.Vincent Driessen2014-08-231-8/+8
|
* Reimplement times on top of Arrow.Vincent Driessen2014-08-234-105/+51
|
* Declare arrow dependency.Vincent Driessen2014-08-232-3/+2
|
* Sort imports.Vincent Driessen2014-08-231-4/+6
|
* Use SVG image for build status, too.Vincent Driessen2014-07-241-1/+1
|
* Update to SVG image.Vincent Driessen2014-07-241-1/+2
|
* Add wheel support to times.Vincent Driessen2014-07-241-0/+3
|
* Switch to using direnv.Vincent Driessen2014-07-241-2/+7
|
* Merge pull request #12 from dbader/masterVincent Driessen2014-07-243-6/+13
|\ | | | | Generate coverage data and prepare integration with Coveralls.io
| * Generate coverage data and prepare integration with Coveralls.ioDaniel Bader2013-05-313-6/+13
| | | | | | | | | | | | | | | | | | | | I've updated the Travis build file and the Tox config to run nosetests with the --with-coverage parameter. The resulting coverage information can then be automatically submitted to Coveralls.io after each Travis build (via the coveralls module). I've also embedded a coverage badge to README.md so that we get a nice coverage status once the repo is connected to Coveralls.
* | Prepare for 0.6.2.0.6.2Vincent Driessen2013-07-291-1/+1
| |
* | Merge pull request #13 from selwin/masterVincent Driessen2013-07-291-1/+1
|\ \ | |/ |/| Update setup.py to work around a bug where pytz doesn't install on pip >= 1.4
| * Update setup.py to work around a bug where pytz doesn't install on pip >= 1.4Selwin Ong2013-07-291-1/+1
|/
* Bump version to 0.6.1.0.6.1Vincent Driessen2013-02-111-1/+1
|
* Remove run_tests. Just run 'tox'.Vincent Driessen2013-02-111-7/+0
|
* Switch to nose.Vincent Driessen2013-02-112-5/+5
|
* Fix Travis build configuration.Vincent Driessen2013-02-113-4/+10
|
* Improve compatibility with Python 2.6.Vincent Driessen2013-02-113-5/+14
|
* Merge pull request #11 from ming13/readme-syntax-highlightingVincent Driessen2013-02-051-16/+30
|\ | | | | Use syntax highlighting in the readme file
| * Use syntax highlighting in the readme file.Artur Dryomov2013-02-051-16/+30
|/
* Merge pull request #8 from jparise/typeerrorsVincent Driessen2012-10-272-10/+6
|\ | | | | Raise TypeErrors for invalid argument types.
| * Update the unit tests for the TypeError changes.Jon Parise2012-10-261-3/+3
| |
| * Raise TypeErrors for invalid argument types.Jon Parise2012-10-261-7/+3
|/
* Bump version to 0.6.0.6Vincent Driessen2012-10-151-1/+1
|
* Add PyPy support.Vincent Driessen2012-10-152-0/+6
|
* Don't depend on six.Vincent Driessen2012-10-152-5/+12
| | | | | Times a tiny library and it already has two dependencies, which I think is one too many already. Let's not make it two :)
* Add tox tests.Vincent Driessen2012-10-152-0/+7
|
* Change Travis build status URL.Vincent Driessen2012-10-151-1/+1
|
* Nose version doens't matter.Vincent Driessen2012-10-151-1/+1
|
* Fixes setup.py for python3.Alexander Artemenko2012-10-151-3/+3
| | | | | Python3 requires explicit globals dictionary to be passed to `exec` function.
* Adds Python3 compatibility, using `six` module.Alexander Artemenko2012-10-154-5/+18
| | | | Also, Travis config was added, to run tests against python 2.7 and 3.2.
* Bump version.0.5Vincent Driessen2012-08-041-1/+1
|
* Be explicit about requiring >= 2.1.Vincent Driessen2012-08-031-1/+2
|
* Remove the version-specific python-dateutil logic.Jon Parise2012-08-021-10/+1
| | | | | python-dateutil 2.1 is compatible with both Python 2.x and 3.x (with help from the six package).
* Flake8.Vincent Driessen2012-02-182-23/+28
|
* By default, use isoformat() to format datetimes.Vincent Driessen2012-02-172-14/+14
| | | | | | | This makes it more portable to JavaScript or MongoDB, for example, when using these times in APIs. This fixes #5.
* Ignore autoenv .env file.Vincent Driessen2012-02-171-0/+1
|
* Bump the version number to 0.4.0.4Vincent Driessen2012-02-081-1/+1
|
* Update the README.Vincent Driessen2012-02-081-0/+23
|
* Add support for _parsing_ dates.Vincent Driessen2012-02-083-5/+36
| | | | It utilizes the python-dateutil parser for this purpose.
* Revert "No need to store the version in a separate file."0.3Vincent Driessen2012-02-043-3/+10
| | | | | | | | | | | | | This reverts commit a8373a2 and fixes #3. If we import times from the setup.py file, it'll require pytz to be available at install time, which we should not be wanting. Therefore, I've reverted back to the state where I simply import the version number from the version.py file directly. Conflicts: times/__init__.py
* Bump the version number to 0.3.Vincent Driessen2012-02-031-1/+1
|
* No need to store the version in a separate file for such a small project.Vincent Driessen2012-02-033-11/+3
|
* The alias to datetime.datetime.utcnow() suffices, no need to create anVincent Driessen2012-02-031-5/+1
| | | | extra layer on the call stack.
* No need to explain all the details in the README.Vincent Driessen2012-02-031-10/+1
| | | | | It is enough (and way simpler) for users to only know the to_universal() call.