Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MeteoSwiss Weather Station Measurements for Spatiotemporal Deep Learning.

<p>
<a href='https://pypi.org/project/peakweather/'><img alt="PyPI" src="https://img.shields.io/pypi/v/peakweather"></a>
<img alt="PyPI - Python Version" src="https://img.shields.io/badge/python-%3E%3D3.8-blue">
<img alt="PyPI - Python Version" src="https://img.shields.io/badge/python-%3E%3D3.9-blue">
<a href='https://peakweather.readthedocs.io/latest/'><img src='https://readthedocs.org/projects/peakweather/badge/?version=latest' alt='Documentation Status' /></a>
<a href='https://pepy.tech/projects/peakweather'><img src='https://static.pepy.tech/badge/peakweather' alt='Total Downloads' /></a>
</p>
Expand Down Expand Up @@ -51,7 +51,7 @@ Install PeakWeather from PyPI:
pip install peakweather
```

This installs the base package with support for station measurements and NWP predictions.
This installs the base package with support for station measurements.
To also access the topographical descriptors and the NWP data, install the extra dependencies:

```shell
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = [
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
dynamic = ["version"]

# Core dependencies
Expand All @@ -30,7 +30,7 @@ module = "peakweather"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py38"
target-version = "py39"
exclude = ["test"]

[tool.ruff.lint]
Expand Down