Closed csparpa closed 5 years ago
When asking for PyOWM version on the OWM25 instances:
OWM25
owm.get_version() # returns a str, eg: "2.4.0"
a tuple should be returned instead of a string:
ver = owm.get_version() print(ver) # gives: (2,4,1)
Fixed with PR #139
As stated in https://github.com/csparpa/pyowm/issues/158 this issue was due for Milestone 3.0, reopening
Fix with https://github.com/csparpa/pyowm/commit/7edd4691e496cedcb35bb2ed191ebab16c0e3fdc
When asking for PyOWM version on the
OWM25
instances:a tuple should be returned instead of a string: