-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Fix dataclasses-json error (#1798)
* 🐛 pin dataclasses-json to avoid error in python3.9 * 🐝 bump owid-catalog version
- Loading branch information
Showing
5 changed files
with
19 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "owid-catalog" | ||
version = "0.3.7" | ||
version = "0.3.8" | ||
description = "Core data types used by OWID for managing data." | ||
authors = ["Our World in Data <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -13,7 +13,6 @@ homepage = "https://github.com/owid/owid-grapher-py" | |
python = ">=3.8.1" | ||
pandas = ">=1.3.3,<2.0" | ||
jsonschema = ">=3.2.0" | ||
dataclasses-json = ">=0.5.6" | ||
pyarrow = ">=10.0.1" | ||
ipdb = ">=0.13.9" | ||
requests = ">=2.26.0" | ||
|
@@ -24,6 +23,9 @@ structlog = ">=21.5.0" | |
owid-repack = ">=0.1.1" | ||
dynamic-yaml = "^1.3.4" | ||
mistune = "^3.0.1" | ||
# higher version causes error in python 3.9 when running | ||
# from owid import catalog; catalog.find("global_carbon_budget").sort_values("version", ascending=False).iloc[0].load() | ||
dataclasses-json = "0.5.8" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = ">=6.2.5" | ||
|
@@ -36,7 +38,6 @@ isort = ">=5.12.0" | |
# unpinning those would introduce tons of type errors | ||
pyright = "1.1.288" | ||
pandas-stubs = "1.2.0.62" | ||
dataclasses-json = "0.5.7" | ||
|
||
|
||
[tool.isort] | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters