Skip to content

Commit ffc1e7a

Browse files
author
Kurt Yoder
authored
Merge pull request #77 from ComFreek/switch-to-python3
Switch to Python 3.4+
2 parents 21f7fda + a0fc62e commit ffc1e7a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PyWavefront
66

77
PyWavefront reads Wavefront 3D object files (`something.obj`, `something.obj.gz`
88
and `something.mtl`) and generates interleaved vertex data for each material ready for rendering.
9-
Python 2.7.x or 3.6+ is supported. A simple (optional) visualization module is also
9+
Python 3.4+ is supported in PyWavefront 1.0.0+. An older [`python2` branch](https://github.com/greenmoss/PyWavefront/tree/python2) is still provided for Python 2.7.x, however, only fixes and no new features will be backported. A simple (optional) visualization module is also
1010
provided for rendering the object(s). The interleaved data can also be used by
1111
more modern renderers thought VBOs or VAOs.
1212

@@ -166,7 +166,7 @@ All tests can be found in the `test` directory. To run the tests:
166166

167167
## Community
168168

169-
Slack: [channel](https://pywavefront.slack.com/). [Email the admins](mailto:[email protected]?subject=Please%20send%20me%20an%20invitation%20to%20the%20PyWavefront%20Slack%20channel&body=Thanks!)
169+
Slack: [channel](https://pywavefront.slack.com/). [Email the admins](mailto:[email protected]?subject=Please%20send%20me%20an%20invitation%20to%20the%20PyWavefront%20Slack%20channel&body=Thanks!)
170170
to request an invitation. Ensure you leave the subject line intact!
171171

172172
## Contributors

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
VERSION = '0.4.2'
3+
VERSION = '1.0.0'
44

55
setup(
66
name='PyWavefront',
@@ -22,7 +22,6 @@
2222
'Operating System :: POSIX :: Linux',
2323
'Natural Language :: English',
2424
'Programming Language :: Python',
25-
'Programming Language :: Python :: 2',
2625
'Programming Language :: Python :: 3',
2726
'Topic :: Multimedia :: Graphics :: 3D Rendering',
2827
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)