Skip to content

Commit

Permalink
Chore/update pynamodb library (#14)
Browse files Browse the repository at this point in the history
* updated pynamodb version
* Bump version: 2.0.4 → 2.0.5
  • Loading branch information
chrisbc authored Jul 8, 2024
1 parent df47266 commit e9974bb
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.4
current_version = 2.0.5
commit = True
tag = True

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [2.0.5] - 2024-07-08

### Changed
- update pynamodb to ^6.0.1
- removed stale pyproject config. `poetry check` now passes.

## [2.0.4] - 2024-07-04

### Changed
Expand Down
22 changes: 9 additions & 13 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 5 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool]
[tool.poetry]
name = "solvis-store"
version = "2.0.4"
version = "2.0.5"
homepage = "https://github.com/GNS-Science/solvis-store"
description = "Solvis Store."
authors = ["Oakley Jurgens <[email protected]>", "Chris Chamberlain <[email protected]>"]
Expand All @@ -27,12 +27,12 @@ cli = 'scripts.cli:cli'

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pynamodb = "^5.5.0"
solvis = ">=0.11.1"

# see https://github.com/orgs/python-poetry/discussions/7937
urllib3 = "<2"
numpy = "<1.25"
pynamodb = "^6.0.1"

[tool.poetry.group.dev.dependencies]
black = { version = "^22.3"}
Expand Down Expand Up @@ -66,6 +66,9 @@ mkdocs-pymdownx-material-extras = "^2.5.6"
mkdocs-with-pdf = "^0.9.3"
mkdocs-click = "^0.8.1"

[tool.poetry.group.scripts]
optional = true

[tool.poetry.group.scripts.dependencies]
ipython = "^8.12.0"
nshm-toshi-client = "^1.0.0"
Expand All @@ -75,26 +78,6 @@ pyvista = "^0.38.5"
click = "^8.1.7"

[tool.poetry.extras]
test = [
"pytest",
"black",
"isort",
"mypy",
"flake8",
"flake8-docstrings",
"pytest-cov"
]

dev = ["tox", "pre-commit", "virtualenv", "pip", "twine", "toml", "bump2version"]

doc = [
"mkdocs",
"mkdocs-include-markdown-plugin",
"mkdocs-material",
"mkdocstrings",
"mkdocs-material-extension",
"mkdocs-autorefs"
]

[tool.black]
line-length = 120
Expand Down
2 changes: 1 addition & 1 deletion solvis_store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """NSHM project @ GNS Science"""
__email__ = '[email protected]'
__version__ = '2.0.4'
__version__ = '2.0.5'

0 comments on commit e9974bb

Please sign in to comment.