Adding Version Control / Numbering (?) to Python Project
问题 With my Java projects at present, I have full version control by declaring it as a Maven project. However I now have a Python project that I'm about to tag 0.2.0 which has no version control. Therefore should I come accross this code at a later date, I won't no what version it is. How do I add version control to a Python project, in the same way Maven does it for Java? 回答1: First, maven is a build tool and has nothing to do with version control. You don't need a build tool with Python --