Skip to content

Commit

Permalink
Release 0.1.0 (#474)
Browse files Browse the repository at this point in the history
* Bump versions to 0.1.0

* Pin `0.1.0` versions for PIXL modules

* Add missing dependencies
  • Loading branch information
milanmlft authored Aug 7, 2024
1 parent bba237f commit 76b6a5f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "pixl_cli"
version = "0.0.4"
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "PIXL command line interface"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core",
"core==0.1.0",
"click==8.1.7",
"tqdm==4.66.4",
]
Expand Down
4 changes: 2 additions & 2 deletions hasher/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "hasher"
version = "0.0.1"
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "Service to securely hash identifiers"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core",
"core==0.1.0",
"azure-identity==1.16.1",
"azure-keyvault==4.2.0",
"fastapi==0.112.0",
Expand Down
4 changes: 2 additions & 2 deletions pixl_core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "core"
version = "0.0.1"
version = "0.1.0"
authors = [{ name = "PIXL core functionality" }]
description = ""
readme = "README.md"
Expand Down Expand Up @@ -32,7 +32,7 @@ test = [
"pytest-cov==5.0.0",
"pytest-asyncio==0.23.8",
"httpx==0.27.*",
"pytest-pixl",
"pytest-pixl==0.1.0",
]
dev = ["mypy", "pre-commit", "ruff"]

Expand Down
5 changes: 3 additions & 2 deletions pixl_dcmd/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[project]
name = "pixl_dcmd"
version = "0.0.2"
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "DICOM header anonymisation functions"
readme = "README.md"
requires-python = ">=3.11"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core==0.1.0",
"arrow==1.3.0",
"pydicom==2.4.4",
"pydicom-data",
Expand All @@ -19,7 +20,7 @@ dependencies = [
]

[project.optional-dependencies]
test = ["dcm2niix==1.0.20220715", "nibabel==5.2.1", "pytest==8.3.2"]
test = ["dcm2niix==1.0.20220715", "nibabel==5.2.1", "pytest==8.3.2", "pytest-pixl==0.1.0"]
dev = ["mypy", "pre-commit", "ruff"]

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions pixl_export/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "pixl_export"
version = "0.0.2"
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "PIXL electronic health record extractor"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core",
"core==0.1.0",
"uvicorn==0.30.4",
"python-decouple==3.8",
"psycopg2-binary==2.9.9",
Expand Down
5 changes: 3 additions & 2 deletions pixl_imaging/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[project]
name = "pixl_imaging"
version = "0.0.2"
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "PIXL image extractor"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"core==0.1.0",
"aiohttp==3.10.1",
"alembic==1.13.2",
"pydicom==2.4.4",
Expand All @@ -15,7 +16,7 @@ dependencies = [
]

[project.optional-dependencies]
test = ["pytest==8.3.2", "pytest-asyncio==0.23.8"]
test = ["pytest==8.3.2", "pytest-asyncio==0.23.8", "pytest-pixl==0.1.0"]
dev = ["mypy", "pre-commit", "ruff"]

[build-system]
Expand Down
8 changes: 3 additions & 5 deletions pytest-pixl/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[project]
name = "pytest-pixl"
version = "0.0.1"
authors = [
{ name="PIXL core functionality" },
]
version = "0.1.0"
authors = [{ name = "PIXL authors" }]
description = "Pytest plugin for PIXL"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -21,7 +19,7 @@ dependencies = [

[project.optional-dependencies]
test = [
"core", # pixl_core
"core==0.1.0",
"pytest==8.3.2",
]
dev = [
Expand Down

0 comments on commit 76b6a5f

Please sign in to comment.