tpaviot / ProcessScheduler

A Python package for automatic and optimized resource scheduling
https://processscheduler.github.io/
GNU General Public License v3.0
59 stars 18 forks source link

Add __version__ to package #22

Closed dreinon closed 3 years ago

dreinon commented 3 years ago

It would be nice that we could print(ps.version) to get the version of the package that's being used.

tpaviot commented 3 years ago

It's already done. But the version number was not up to date, fixed by commit ae0bf15

>>> import processscheduler as ps
>>> ps.__VERSION__
'0.6.0dev'