Skip to content

Commit

Permalink
Meteostat 1.6.4 (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
clampr committed Aug 9, 2022
1 parent b672765 commit ceb9277
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ If you want to support the project financially, you can make a donation using on
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
for any purpose, even commercially. However, you are not allowed to redistribute Meteostat data "as-is" for commercial purposes.

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).
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).

## Code License

Expand Down
2 changes: 1 addition & 1 deletion examples/daily/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
data = data.fetch()

# Plot chart
data.plot(y=["tavg", "tmin", "tmax"])
data.plot(y=["tavg", "tmin", "tmax", "prcp"], subplots=True)
plt.show()
2 changes: 1 addition & 1 deletion meteostat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"""

__appname__ = "meteostat"
__version__ = "1.6.3"
__version__ = "1.6.4"

from .interface.base import Base
from .interface.timeseries import TimeSeries
Expand Down
2 changes: 1 addition & 1 deletion meteostat/interface/hourly.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _set_time(

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

self._start = start
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Setup
setup(
name="meteostat",
version="1.6.3",
version="1.6.4",
author="Meteostat",
author_email="[email protected]",
description="Access and analyze historical weather and climate data with Python.",
Expand Down

0 comments on commit ceb9277

Please sign in to comment.