Skip to content

Commit

Permalink
Fixed beeware#4 - Updated README to mention Python 3.4 requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 29, 2015
1 parent 04e5c4d commit ee51300
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ What it does:

* Provides an API to let you programmatically create Java class files.

* Compiles a Python source file into a Java class file in a nominated
* Compiles a Python 3.4 source file into a Java class file in a nominated
package. Supports the conversion of:

* Class definition and construction
Expand All @@ -34,11 +34,11 @@ What it does:

* Static initialization of modules.

It *doesn't* currently support
* List comprehensions

* Keyword arguments
It *doesn't* currently support:

* List comprehensions
* Keyword arguments

* Generators

Expand All @@ -52,15 +52,15 @@ and development effort.
Quickstart
----------

Install `voc`, then run the example script::
Using Python 3.4, install `voc`, then run the example script::

$ pip install voc
$ python -m voc tests/example.py org.pybee
Creating class 'example'...
Writing example.class...
Done.

This will produce a `example.class`, in the org.pybee namespace, that you can
This will produce an `example.class`, in the org.pybee namespace, that you can
run on any Java 1.7+ VM.

Next step - you need to compile the Python support libraries:
Expand Down

0 comments on commit ee51300

Please sign in to comment.