Skip to content

Commit 256d1a8

Browse files
authored
update dependencies (#18)
1 parent 59a418f commit 256d1a8

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

databaseparsers/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ class EntryPoint(ParserEntryPoint):
2929
This class must have a function `def parse(self, mainfile, archive, logger)`.
3030
"""
3131
)
32-
code_name: Optional[str]
33-
code_homepage: Optional[str]
34-
code_category: Optional[str]
32+
code_name: Optional[str] = None
33+
code_homepage: Optional[str] = None
34+
code_category: Optional[str] = None
3535
metadata: Optional[dict] = Field(
36+
None,
3637
description="""
3738
Metadata passed to the UI. Deprecated. """
3839
)

pyproject.toml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,24 @@ readme = "README.md"
1010
authors = [{ name = "The NOMAD Authors" }]
1111
license = { file = "LICENSE" }
1212
dependencies = [
13-
"nomad-lab>=1.3.6.dev1",
13+
"nomad-lab>=1.3.7",
1414
"nomad-schema-plugin-simulation-workflow>=1.0.1",
1515
"nomad-schema-plugin-run>=1.0.1",
16-
"pydantic>=1.10.8,<2.0.0",
16+
"pydantic>=1.10.8",
1717
]
1818

1919
[project.urls]
2020
homepage = "https://github.com/nomad-coe/database-parsers"
2121

2222
[project.optional-dependencies]
2323
tests = [
24-
"mypy==1.0.1",
25-
"pylint==2.13.9",
26-
"pylint_plugin_utils==0.5",
27-
"pycodestyle==2.8.0",
28-
"pytest==3.10.0",
24+
"pytest>= 5.3.0, <= 8.0.2",
2925
"pytest-timeout==1.4.2",
3026
"pytest-cov==2.7.1",
31-
"astroid==2.11.7",
32-
"typing-extensions==4.4.0",
33-
"ruff==0.1.8",
27+
"astroid>=2.5.1",
28+
'mypy==1.0.1',
29+
'ruff>=0.6',
30+
'typing-extensions>=4.12',
3431
]
3532

3633
[tool.ruff]

0 commit comments

Comments
 (0)