Skip to content

Commit

Permalink
Remove mention of version in code. Update to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianDAlessandro committed Aug 3, 2023
1 parent 509343d commit dc57c88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
2 changes: 0 additions & 2 deletions datahub/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from .core.log_config import logging_dict_config

__version__ = "0.0.1"

logging.config.dictConfig(logging_dict_config)

log = logging.getLogger("api_logger")
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[project]
name = "datahub"
version = "0.0.1"
version = "0.1.1"
authors = [
{ name = "Adrian D'Alessandro", email = "[email protected]" },
{ name = "Callum West", email = "[email protected]" },
{ name = "Dan Davies", email = "[email protected]" },
{ name = "Imperial College London RSE Team", email = "[email protected]" }
{ name = "Imperial College London RSE Team", email = "[email protected]" },
]
requires-python = ">=3.10"
dependencies = [
"pandas[excel]",
"fastapi",
"uvicorn",
"python-multipart",
"h5py"
"h5py",
]

[project.optional-dependencies]
Expand All @@ -28,7 +28,7 @@ dev = [
"pytest-mypy",
"pytest-mock",
"pandas-stubs",
"httpx"
"httpx",
]

[tool.setuptools.packages.find]
Expand Down
6 changes: 0 additions & 6 deletions tests/test_datahub.py

This file was deleted.

0 comments on commit dc57c88

Please sign in to comment.