Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
GijsVermarien committed Sep 5, 2024
2 parents 82db119 + a1ee820 commit a2abdca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10" # Specify the Python version you need
python-version: "3.11" # Specify the Python version you need

- name: Install gfortran
run: |
Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "numpy", "wheel", "setuptools-git-versioning>=2.0,<3"]
requires = ["setuptools>64,<74", "setuptools-scm", "numpy<2", "wheel", "setuptools-git-versioning>=2.0,<3"]
build-backend = "setuptools.build_meta"

[tool.setuptools-git-versioning]
Expand All @@ -16,10 +16,12 @@ authors = [
{ name = "Ross O'Donoghue" },
]
maintainers = [
{ name = "Gijs Vermariën", email = "[email protected]" },
{name="Gijs Vermariën", email="[email protected]"},
]
license = {text = "MIT License"}
description = "A package for the astrochemical modelling of gas-grain chemistries."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT License" }
dependencies = ["pandas", "numpy", "pyyaml", "matplotlib", "seaborn", "pytest"]
requires-python = ">=3.9,<3.12"
dependencies = [
"pandas<2", "numpy<2", "pyyaml", "matplotlib", "seaborn", "pytest"
]

0 comments on commit a2abdca

Please sign in to comment.