Skip to content

Commit 966431d

Browse files
committed
support for python 3.12 3.13
1 parent a593b9c commit 966431d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.1] - August, 2024
8+
9+
### Features
10+
11+
* Support for Python3.12 and Python 3.13
12+
713
## [0.2.0] - January, 2024
814

915
### Features

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "meteole"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
requires-python = ">3.8.0"
99
description = "A Python client library for forecast model APIs (e.g., Météo-France)."
1010
readme = "README.md"
@@ -26,14 +26,15 @@ classifiers = [
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
29-
# "Programming Language :: Python :: 3.12", no wheels 3.12 for dependency ecmwflibs
29+
"Programming Language :: Python :: 3.12",
30+
"Programming Language :: Python :: 3.13",
3031
"License :: OSI Approved :: Apache Software License",
3132
]
3233

3334
dependencies = [
3435
"pandas>=2.0.0",
35-
"ecmwflibs>=0.6.3",
36-
"cfgrib>=0.0.11.0",
36+
"eccodes>=2.39.0",
37+
"cfgrib>=0.9.10.4",
3738
"requests>=2.31.0",
3839
"xarray>=2024.5.0",
3940
"xmltodict>=0.13.0",

0 commit comments

Comments
 (0)