-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit b294b8c Author: Mustafa SOYLU <[email protected]> Date: Wed Jan 15 10:55:45 2025 +0100 bump version to 0.5.0 (#103) commit 9c87008 Author: Mustafa SOYLU <[email protected]> Date: Wed Jan 15 10:41:47 2025 +0100 update documentation (#94) * add notes * explain why set some fields as compulsory * Update README.md Co-authored-by: Volker Hofmann <[email protected]> --------- Co-authored-by: Volker Hofmann <[email protected]> commit 42ae9c2 Author: Mustafa SOYLU <[email protected]> Date: Wed Jan 15 10:41:23 2025 +0100 Optional email (#102) * make email optional in the person model * remove none's from the existing people list * make email optional in setuptools model * remove check of no email value since it is done in core now * update tests for optional email * show email is optional in manual * update doc dev docs for ruff usage commit d28180d Author: Mustafa Soylu <[email protected]> Date: Mon Jul 29 09:47:48 2024 +0200 fix version in readme commit 26dc24a Merge: f42047b f53acd6 Author: Mustafa SOYLU <[email protected]> Date: Mon Jul 29 09:34:36 2024 +0200 Merge pull request #93 from Materials-Data-Science-and-Informatics/release/v0.4.3 v0.4.3 commit f53acd6 Author: Mustafa Soylu <[email protected]> Date: Mon Jul 29 09:25:27 2024 +0200 update changelog and metadata commit f42047b Merge: a1548c9 78f8dc6 Author: Mustafa SOYLU <[email protected]> Date: Fri Jul 26 15:15:20 2024 +0200 Merge pull request #92 from Materials-Data-Science-and-Informatics/fix/validations update/fix validations commit 78f8dc6 Author: Mustafa Soylu <[email protected]> Date: Fri Jul 26 14:31:18 2024 +0200 fix test since person conversion fails returns none on error commit 4c81e63 Author: Mustafa Soylu <[email protected]> Date: Fri Jul 26 14:30:58 2024 +0200 check if person if None on the base class commit 993b714 Author: Mustafa Soylu <[email protected]> Date: Fri Jul 26 14:30:37 2024 +0200 return None if person conversion fails commit 188eda1 Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 16:01:51 2024 +0200 update changelog commit 023c33b Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 16:01:33 2024 +0200 add missing error type commit acd3dab Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 16:01:18 2024 +0200 disable error raise on users without email in julia commit 32ad110 Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 16:01:03 2024 +0200 disable error raise on users without email in package.json commit a400d97 Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 16:00:19 2024 +0200 disable error raise on users without email in poetry commit a1548c9 Merge: 6257f3a 324b4c3 Author: Mustafa SOYLU <[email protected]> Date: Tue Jul 23 11:55:24 2024 +0200 Merge pull request #91 from Materials-Data-Science-and-Informatics/feature/update_hooks update pre-commit hooks and dependencies commit 324b4c3 Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 11:41:52 2024 +0200 update dependencies commit 4bc902d Author: Mustafa Soylu <[email protected]> Date: Tue Jul 23 11:25:29 2024 +0200 update pre-commit hooks commit 6257f3a Merge: 77c9345 0972820 Author: Mustafa SOYLU <[email protected]> Date: Tue Apr 30 11:39:15 2024 +0200 Merge pull request #86 from Materials-Data-Science-and-Informatics/fix/log_format Fix/log format commit 0972820 Author: Mustafa Soylu <[email protected]> Date: Tue Apr 30 11:35:01 2024 +0200 bump version to 0.4.2 commit f02d8cf Author: Mustafa Soylu <[email protected]> Date: Tue Apr 30 11:29:25 2024 +0200 fix rich formating of error message and traceback commit 77c9345 Merge: 16dfb47 8be7dd2 Author: Mustafa SOYLU <[email protected]> Date: Mon Apr 8 17:54:07 2024 +0200 Merge pull request #82 from Materials-Data-Science-and-Informatics/fix/required_fields Fix/required fields commit 8be7dd2 Author: Mustafa Soylu <[email protected]> Date: Mon Apr 8 14:13:58 2024 +0200 bump version to 0.4.1 commit f48f5d3 Author: Mustafa Soylu <[email protected]> Date: Mon Apr 8 11:38:54 2024 +0200 fix package license commit 7bb381c Author: Mustafa Soylu <[email protected]> Date: Mon Apr 8 11:33:37 2024 +0200 fix mkdocs optional fields commit c9d2179 Author: Mustafa Soylu <[email protected]> Date: Mon Apr 8 11:33:21 2024 +0200 fix package json optional fields
- Loading branch information
1 parent
bb07485
commit 96b230b
Showing
55 changed files
with
1,418 additions
and
907 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,68 @@ | ||
repos: | ||
# Various general + format-specific helpers | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-symlinks | ||
- id: trailing-whitespace | ||
#- id: mixed-line-ending | ||
# args: [--fix=lf] | ||
- id: check-yaml | ||
exclude: "mkdocs.yml" | ||
- id: check-toml | ||
- id: check-json | ||
- id: check-ast | ||
- id: debug-statements | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-added-large-files | ||
args: [--maxkb=10000] | ||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: "0.22.0" | ||
hooks: | ||
- id: check-github-workflows | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
# Ruff version. | ||
rev: v0.1.6 | ||
hooks: | ||
# Run the linter. | ||
- id: ruff | ||
types_or: [python, pyi, jupyter] | ||
args: [--fix] | ||
# Run the formatter. | ||
- id: ruff-format | ||
types_or: [python, pyi, jupyter] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: "v1.1.1" | ||
hooks: | ||
- id: mypy | ||
args: [--no-strict-optional, --ignore-missing-imports] | ||
# NOTE: you might need to add some deps here: | ||
additional_dependencies: [] | ||
# Various general + format-specific helpers | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: check-symlinks | ||
- id: trailing-whitespace | ||
- id: mixed-line-ending | ||
args: [--fix=lf] | ||
- id: check-yaml | ||
exclude: 'mkdocs.yml' | ||
- id: check-toml | ||
- id: check-json | ||
- id: check-ast | ||
- id: debug-statements | ||
- id: check-merge-conflict | ||
- id: check-shebang-scripts-are-executable | ||
- id: check-added-large-files | ||
args: [--maxkb=10000] | ||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: '0.29.0' | ||
hooks: | ||
- id: check-github-workflows | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
# Ruff version. | ||
rev: v0.5.4 | ||
hooks: | ||
# Run the linter. | ||
- id: ruff | ||
types_or: [python, pyi, jupyter] | ||
args: [--fix] | ||
# Run the formatter. | ||
- id: ruff-format | ||
types_or: [python, pyi, jupyter] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: 'v1.11.0' | ||
hooks: | ||
- id: mypy | ||
args: [--no-strict-optional, --ignore-missing-imports] | ||
# NOTE: you might need to add some deps here: | ||
additional_dependencies: [] | ||
|
||
# Metadata | ||
- repo: https://github.com/citation-file-format/cff-converter-python | ||
rev: "44e8fc9" | ||
hooks: | ||
- id: validate-cff | ||
- repo: https://github.com/fsfe/reuse-tool | ||
rev: "v1.1.2" | ||
hooks: | ||
- id: reuse | ||
# Metadata | ||
- repo: https://github.com/citation-file-format/cff-converter-python | ||
rev: '054bda51dbe278b3e86f27c890e3f3ac877d616c' | ||
hooks: | ||
- id: validate-cff | ||
- repo: https://github.com/fsfe/reuse-tool | ||
rev: 'v4.0.3' | ||
hooks: | ||
- id: reuse | ||
|
||
- repo: local | ||
hooks: | ||
# NOTE: copy from .pre-commit-hooks.yaml, for technical reasons | ||
- id: somesy-sync | ||
name: Run somesy sync | ||
entry: somesy sync | ||
language: python | ||
files: '^\.somesy\.toml|pyproject\.toml$' | ||
pass_filenames: false | ||
- repo: local | ||
hooks: | ||
# NOTE: copy from .pre-commit-hooks.yaml, for technical reasons | ||
- id: somesy-sync | ||
name: Run somesy sync | ||
entry: somesy sync | ||
language: python | ||
files: '^\.somesy\.toml|pyproject\.toml$' | ||
pass_filenames: false | ||
|
||
- id: somesy-fill | ||
name: Update AUTHORS.md | ||
entry: somesy fill -t docs/_template_authors.md -o AUTHORS.md | ||
language: python | ||
files: '^\.somesy\.toml|pyproject\.toml$' | ||
pass_filenames: false | ||
- id: somesy-fill | ||
name: Update AUTHORS.md | ||
entry: somesy fill -t docs/_template_authors.md -o AUTHORS.md | ||
language: python | ||
files: '^\.somesy\.toml|pyproject\.toml$' | ||
pass_filenames: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.