Skip to content

Commit

Permalink
nicer approach to chai version selection; docs / readme updates
Browse files Browse the repository at this point in the history
  • Loading branch information
crsmithdev committed May 29, 2013
1 parent fda80e0 commit a9481f1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ auto: build27
build27:
virtualenv local --python=python2.7
local/bin/pip install --use-mirrors -r requirements.txt
local/bin/pip install --use-mirrors -r requirements27.txt

build26:
virtualenv local --python=python2.6
local/bin/pip install --use-mirrors -r requirements.txt
local/bin/pip install -I chai==0.3.1
local/bin/pip install --use-mirrors -r requirements26.txt

build33:
virtualenv local --python=python3.3
local/bin/pip install --use-mirrors -r requirements.txt
local/bin/pip install -I git+git://github.com/agoragames/chai.git@cb1ad9e87ab9f2f78fceae9d8f16ccee06274605
local/bin/pip install --use-mirrors -r requirements33.txt

test:
rm -f .coverage
Expand Down
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Features
--------

- Implements the datetime interface
- Supports Python 2.6, 2.7 and 3.3
- TZ-aware & UTC by default
- Concise, intelligent interface for creation
- Easily replace and shift attributes
Expand All @@ -30,6 +31,7 @@ Features
- Simple timestamp handling
- Time spans, ranges, floors and ceilings
- Humanization, with support for a growing number of locales
- Extensible factory architecture supporting custom Arrow-derived types

Get started
-----------
Expand Down Expand Up @@ -73,6 +75,13 @@ Documentation is available at `crsmithdev.com/arrow <http://crsmithdev.com/arrow
History
-------

- 0.3.3

- Python 2.6 and 3.3 fully supported, including tests
- Initial support for locale-based parsing and formatting
- ArrowFactory class, now proxied as the module API
- arrow.factory() method to obtain a factory for a custom type

- 0.3.2

- Python 3.0 support / fixes
Expand All @@ -97,7 +106,7 @@ History

- 0.2.0

- Reimplemented as datetime replacement
- Rewrite, re-implemented as datetime replacement
- Added date parsing
- Added date formatting
- Added floor, ceil and span methods
Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Key features
------------

- Implements the datetime interface
- Supports Python 2.6, 2.7 and 3.3
- TZ-aware & UTC by default
- Concise, intelligent interface for creation
- Easily replace and shift attributes
Expand All @@ -28,7 +29,7 @@ Key features
- Simple timestamp handling
- Time spans, ranges, floors and ceilings
- Humanization, with support for a growing number of locales
- Extensible factories for custom Arrow-derived types
- Extensible factory architecture supporting custom Arrow-derived types

----------
Quickstart
Expand Down
1 change: 1 addition & 0 deletions requirements26.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chai==0.3.1
1 change: 1 addition & 0 deletions requirements27.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
chai==0.3.3
1 change: 1 addition & 0 deletions requirements33.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
git+git://github.com/agoragames/chai.git@cb1ad9e87ab9f2f78fceae9d8f16ccee06274605

0 comments on commit a9481f1

Please sign in to comment.