-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Satisfy mypy in two places with genno 1.18.0
- Loading branch information
Showing
3 changed files
with
8 additions
and
9 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
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
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 |
---|---|---|
|
@@ -5,12 +5,10 @@ requires = ["build", "setuptools-scm"] | |
dynamic = ["version"] | ||
name = "message-ix-models" | ||
description = "Tools for the MESSAGEix-GLOBIOM family of models" | ||
authors = [ | ||
{name = "IIASA Energy, Climate, and Environment (ECE) Program"}, | ||
] | ||
authors = [{ name = "IIASA Energy, Climate, and Environment (ECE) Program" }] | ||
maintainers = [ | ||
{name = "Paul Natsuo Kishimoto", email = "[email protected]"}, | ||
{name = "Fridolin Glatter", email = "[email protected]"}, | ||
{ name = "Paul Natsuo Kishimoto", email = "[email protected]" }, | ||
{ name = "Fridolin Glatter", email = "[email protected]" }, | ||
] | ||
readme = "README.rst" | ||
classifiers = [ | ||
|
@@ -28,15 +26,15 @@ classifiers = [ | |
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: R", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Information Analysis" | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"click", | ||
"colorama", | ||
# When the minimum is greater than the minimum via message_ix; e.g. | ||
# message_ix >= 3.4.0 → ixmp >= 3.4.0 → genno >= 1.6.0", | ||
"genno >= 1.8.0", | ||
"genno >= 1.18.0", | ||
"iam_units", | ||
"message_ix >= 3.4.0", | ||
"pooch", | ||
|