-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update the Python requirement The newest type hints make the code incompatible with Python <= 3.8, so adjust the requirement accordingly. * Also update the requirement in pyproject. * Add pytest as a requirement
- Loading branch information
1 parent
05841ca
commit 69744be
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,9 @@ maintainers = [ | |
{name="Gijs Vermariën", email="[email protected]"}] | ||
description="A package for the astrochemical modelling of gas-grain chemistries." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
license = {text = "MIT License"} | ||
dependencies = [ | ||
"pandas", "numpy", "pyyaml", "matplotlib", "seaborn", | ||
"pandas", "numpy", "pyyaml", "matplotlib", "seaborn", "pytest" | ||
] | ||
|