forked from nexusformat/definitions
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix URLs and formats with black>24 (#152)
* Updates URLs * Update ci/cd to deploy on tags * Updates url and reverst ci/cd changes * Reformat according to black>24 * Update black version in requirements
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 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 |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
the NXDL chapter. | ||
""" | ||
|
||
|
||
from pathlib import Path | ||
from typing import List | ||
|
||
|
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,2 +1,2 @@ | ||
REPO_URL = "https://github.com/nexusformat/definitions/blob/main" | ||
REPO_URL = "https://github.com/FAIRmat-NFDI/nexus_definitions/tree/fairmat" | ||
MANUAL_URL = "https://manual.nexusformat.org" |
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,6 +1,7 @@ | ||
"""This is a code that performs several tests on nexus tool | ||
""" | ||
|
||
# | ||
# Copyright The NOMAD Authors. | ||
# | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,6 @@ sphinx_comments | |
pytest | ||
|
||
# Code style and auto-formatting | ||
black>=22.3 | ||
black>=24.1.1 | ||
flake8>=4 | ||
isort>=5.10 |