Skip to content

Commit a24ee96

Browse files
authored
Merge pull request #61 from nova-model/60-fix-packaging-issue
Fix dependency packaging
2 parents 0e6ef80 + 2e05356 commit a24ee96

3 files changed

Lines changed: 19 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Nova Galaxy 0.12.0 (in progress)
22

3+
### Nova Galaxy 0.11.5
4+
- Fixes a packaging issue where some dependencies weren't included in the final build (thanks to John Duggan). [Pull request 61](https://github.com/nova-model/nova-galaxy/pull/61)
5+
36
### Nova Galaxy 0.11.4
47
- Allows connecting to a Galaxy URL that returns a redirect (thanks to John Duggan). [Pull request 57](https://github.com/nova-model/nova-galaxy/pull/57)
58

pixi.lock

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "nova-galaxy"
3-
version = "0.11.4"
3+
version = "0.11.5"
44
description = "Utilties for accessing the ORNL Galaxy instance"
55
authors = [
66
{ name = "Greg Watson", email = "watsongr@ornl.gov" },
@@ -11,6 +11,13 @@ readme = "README.md"
1111
license = "MIT"
1212
keywords = ["NOVA", "Galaxy", "python"]
1313
requires-python = ">=3.10,<3.14"
14+
dependencies = [
15+
"bioblend>=1.5.0",
16+
"blinker>=1.9.0",
17+
"deprecated>=1.2.18",
18+
"nova-common>=0.2.0",
19+
"tomli>=2.0.2"
20+
]
1421

1522
[tool.pixi.workspace]
1623
channels = ["conda-forge"]
@@ -25,11 +32,6 @@ production = {features = [], solve-group = "default"}
2532
[tool.pixi.pypi-dependencies]
2633
nova-galaxy = { path = ".", editable = true }
2734
hatch = "*"
28-
bioblend = ">=1.5.0"
29-
tomli = ">=2.0.2"
30-
deprecated = ">=1.2.18"
31-
nova-common = ">=0.2.0"
32-
blinker = ">=1.9.0"
3335
pytest-asyncio = ">=0.26.0"
3436

3537
[tool.pixi.feature.dev.pypi-dependencies]

0 commit comments

Comments
 (0)