Skip to content

Commit

Permalink
correctly specifying dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed May 7, 2024
1 parent fcf5c00 commit db9598e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["flit_core >=3.2,<4", "musica"]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
Expand All @@ -10,5 +10,9 @@ license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Apache Software License"]
dynamic = ["version", "description"]

dependencies = [
"musica==0.6.1.dev0"
]

[project.urls]
Home = "https://github.com/NCAR/music-box"
Home = "https://github.com/NCAR/music-box"
2 changes: 1 addition & 1 deletion src/acom_music_box/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This package contains modules for handling various aspects of a music box,
including species, products, reactants, reactions, and more.
"""
__version__ = "2.1.0"
__version__ = "2.1.1"

from .utils import convert_time, convert_pressure, convert_temperature, convert_concentration
from .music_box_species import Species
Expand Down

0 comments on commit db9598e

Please sign in to comment.