Skip to content

Commit

Permalink
Merge pull request #142 from DataONEorg/feature-133-release-prep
Browse files Browse the repository at this point in the history
Feature-133: Code clean-up for Release Prep
  • Loading branch information
doulikecookiedough authored Sep 24, 2024
2 parents 93cce0f + 44b1f79 commit b4b6e82
Show file tree
Hide file tree
Showing 7 changed files with 1,171 additions and 1,053 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ To install `hashstore` locally, create a virtual environment for python 3.9+,
install poetry, and then install or build the package with `poetry install` or `poetry build`,
respectively.

To run tests, navigate to the root directory and run `pytest -s`. The test suite contains tests that
To run tests, navigate to the root directory and run `pytest`. The test suite contains tests that
take a longer time to run (relating to the storage of large files) - to execute all tests, run
`pytest --run-slow`. To see detailed
`pytest --run-slow`.

## HashStore Client

Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tool.poetry]
name = "hashstore"
version = "1.0.0"
version = "1.1.0"
description = "HashStore, an object storage system using content identifiers."
authors = ["Dou Mok <[email protected]>", "Matt Jones <[email protected]>"]
authors = ["Dou Mok <[email protected]>", "Matt Jones <[email protected]>",
"Matthew Brooke", "Jing Tao", "Jeanette Clark", "Ian M. Nesbitt"]
readme = "README.md"
keywords = ["filesystem", "object storage", "hashstore", "storage"]
classifiers = [
Expand All @@ -25,6 +26,8 @@ python = ">=3.9"
pathlib = ">=1.0.1"
pyyaml = ">=6.0"

[tool.poetry_bumpversion.file."src/hashstore/__init__.py"]

[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
black = ">=22.10.0"
Expand Down
1 change: 1 addition & 0 deletions src/hashstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
from hashstore.hashstore import HashStore, HashStoreFactory

__all__ = ("HashStore", "HashStoreFactory")
__version__ = "1.1.0"
Loading

0 comments on commit b4b6e82

Please sign in to comment.