Skip to content

Commit

Permalink
🔨 Cut a 0.3.11 release of owid-catalog supporting Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
larsyencken committed May 24, 2024
1 parent 63d322f commit 7854952
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 6 deletions.
4 changes: 3 additions & 1 deletion lib/catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ df = rc[path]

## Development

You need Python 3.8+, `poetry` and `make` installed. Clone the repo, then you can simply run:
You need Python 3.9+, `poetry` and `make` installed. Clone the repo, then you can simply run:

```
# run all unit tests and CI checks
Expand All @@ -98,6 +98,8 @@ make watch

## Changelog

- `v0.3.11`
- Add support for Python 3.12 in `pypackage.toml`
- `v0.3.10`
- Add experimental chart data API in `owid.catalog.charts`
- `v0.3.9`
Expand Down
63 changes: 60 additions & 3 deletions lib/catalog/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/catalog/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "owid-catalog"
version = "0.3.10"
version = "0.3.11"
description = "Core data types used by OWID for managing data."
authors = ["Our World in Data <[email protected]>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/owid/owid-grapher-py"
homepage = "https://github.com/owid/owid-grapher-py"

[tool.poetry.dependencies]
python = ">=3.9, <3.12"
python = ">=3.9,<4"
pandas = "^2.2.1"
jsonschema = ">=3.2.0"
pyarrow = ">=10.0.1"
Expand Down

0 comments on commit 7854952

Please sign in to comment.