Skip to content

Commit

Permalink
Merge pull request #3 from PeterJCLaw/python3
Browse files Browse the repository at this point in the history
Compatibility with Python 3
  • Loading branch information
kne authored May 11, 2019
2 parents b2c60a9 + 0cb4a41 commit ee7b81f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions pypybox2d/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import math
import operator
from copy import copy
from functools import reduce
from .common import (PI, NUMBER_TYPES, Vec2, AABB, Transform,
min_vector, max_vector, property)
from .settings import (EPSILON, EPSILON_SQR, POLYGON_RADIUS)
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]

if build_cext:
Expand Down

0 comments on commit ee7b81f

Please sign in to comment.