VCityTeam / py3dtilers

Tilers accepting various input formats (OBJ, 3DCity databases, GeoJson, IFC) and producing 3DTiles tilesets.
Other
188 stars 51 forks source link

Incorrection version of py3DTilers in __init__.py #152

Closed wesley-petit closed 1 year ago

wesley-petit commented 1 year ago

Currently, version 1.2.0 is the latest version of py3DTilers.

However, when I add the py3DTilers 1.2.0 requirement, my virtual environment will contain a folder named py3dtilers-1.1.0-py3.9.egg-info, but the contents refer to py3DTilers 1.2.0.

This is because the init.py file in the py3DTilers folder refers to the previous version:

# -*- coding : utf-8 -*-

__version__ = '1.1.0

And it is used in setup.py to define the version of py3DTilers.