Skip to content

Commit ceb9277

Browse files
authored
Meteostat 1.6.4 (#108)
1 parent b672765 commit ceb9277

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ If you want to support the project financially, you can make a donation using on
8282
Meteorological data is provided under the terms of the [Creative Commons Attribution-NonCommercial 4.0 International Public License (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/legalcode). You may build upon the material
8383
for any purpose, even commercially. However, you are not allowed to redistribute Meteostat data "as-is" for commercial purposes.
8484

85-
By using the Meteostat Python library you agree to our [terms of service](https://dev.meteostat.net/docs/terms.html). All meteorological data sources used by the Meteostat project are listed [here](https://dev.meteostat.net/docs/sources.html).
85+
By using the Meteostat Python library you agree to our [terms of service](https://dev.meteostat.net/terms.html). All meteorological data sources used by the Meteostat project are listed [here](https://dev.meteostat.net/sources.html).
8686

8787
## Code License
8888

examples/daily/chart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
data = data.fetch()
2828

2929
# Plot chart
30-
data.plot(y=["tavg", "tmin", "tmax"])
30+
data.plot(y=["tavg", "tmin", "tmax", "prcp"], subplots=True)
3131
plt.show()

meteostat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414
__appname__ = "meteostat"
15-
__version__ = "1.6.3"
15+
__version__ = "1.6.4"
1616

1717
from .interface.base import Base
1818
from .interface.timeseries import TimeSeries

meteostat/interface/hourly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def _set_time(
124124

125125
self._annual_steps = [
126126
(start + timedelta(days=365 * i)).year
127-
for i in range(end.year - start.year + 1)
127+
for i in range(end.year - start.year + 2)
128128
]
129129

130130
self._start = start

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Setup
1616
setup(
1717
name="meteostat",
18-
version="1.6.3",
18+
version="1.6.4",
1919
author="Meteostat",
2020
author_email="[email protected]",
2121
description="Access and analyze historical weather and climate data with Python.",

0 commit comments

Comments
 (0)