-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from MC-kit/devel
partionining
- Loading branch information
Showing
7 changed files
with
364 additions
and
362 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 |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Sync GitHub Issue Labels | ||
uses: crazy-max/ghaction-github-labeler@v4 | ||
|
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 |
---|---|---|
|
@@ -27,12 +27,12 @@ jobs: | |
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 2 # need previous revision to define tag | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4.5.0 | ||
uses: actions/setup-python@v4.6.0 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
|
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 |
---|---|---|
|
@@ -36,10 +36,10 @@ jobs: | |
!contains(github.event.head_commit.message, '[skip_ci]') | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Set up Python 3.10 # on 3.11 pip install in unstable: "canonicalize" fails occasionally | ||
uses: actions/setup-python@v4.5.0 | ||
uses: actions/setup-python@v4.6.0 | ||
with: | ||
python-version: '3.10' | ||
|
||
|
@@ -81,12 +81,12 @@ jobs: | |
needs: lint | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4.5.0 | ||
uses: actions/setup-python@v4.6.0 | ||
with: | ||
python-version: '3.11' | ||
|
||
|
@@ -133,11 +133,11 @@ jobs: | |
steps: | ||
|
||
- name: Checkout repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- uses: actions/setup-python@v4.5.0 | ||
- uses: actions/setup-python@v4.6.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
@@ -183,10 +183,10 @@ jobs: | |
steps: | ||
|
||
- name: Check out the repository | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4.5.0 | ||
uses: actions/setup-python@v4.6.0 | ||
with: | ||
python-version: '3.11' | ||
|
||
|
@@ -230,4 +230,4 @@ jobs: | |
nox --force-color --session=coverage -- xml | ||
- name: Upload coverage report | ||
uses: codecov/[email protected].1 | ||
uses: codecov/[email protected].3 |
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
[tool.poetry] | ||
name = "xpypact" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
description = "\"Python tools to work with elements and isotopes\"" | ||
authors = ["dvp <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -241,7 +241,7 @@ filterwarnings = [ | |
"ignore:.*not typechecking multipledispatch.dispatcher.*UserWarning", | ||
'ignore:.*io.FileIO \[closed\]', | ||
'ignore:.*Deprecated call to `pkg_resources.declare_namespace', | ||
'ignore:.*DeprecationWarning.*Implicit None on return values' | ||
'ignore:.*Implicit None on return values:DeprecationWarning' | ||
] | ||
log_format = "%(asctime)s %(levelname)s %(message)s" | ||
log_date_format = "%Y-%m-%d %H:%M:%S" | ||
|
@@ -579,7 +579,7 @@ exclude = [ | |
"src/xpypact/inventory.py" = ["F811"] | ||
"src/xpypact/data_arrays.py" = ["ANN401", "PD011"] | ||
"src/xpypact/utils/resource.py" = ["ANN202"] | ||
"tools/*" = ["T201", "INP001"] | ||
"tools/*" = ["T201", "INP001", "S603", "S607"] | ||
|
||
[tool.ruff.mccabe] | ||
# Unlike Flake8, default to a complexity level of 10. | ||
|
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