Skip to content

Commit

Permalink
Merge tag '0.1.6' into develop
Browse files Browse the repository at this point in the history
0.1.6
  • Loading branch information
oiffrig committed Nov 4, 2024
2 parents 2e64589 + f4e7736 commit 32fb643
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.6 - 2024-11-04

* Update project metadata

## 0.1.5 - 2024-11-04

* Fix `ImportError` with Python >= 3.13
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "earthkit-time"
version = "0.1.5"
version = "0.1.6"
requires-python = ">= 3.8"
description = "Date and time manipulation routines for the use of weather data"
license = {file = "LICENSE"}
Expand All @@ -18,8 +18,11 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = ["pyyaml"]
Expand Down
2 changes: 1 addition & 1 deletion src/earthkit/time/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import enum
import os
import pathlib
from importlib import resources
import types
from importlib import resources
from typing import Optional, TextIO, Tuple, Union

import yaml
Expand Down

0 comments on commit 32fb643

Please sign in to comment.