-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into sugar_selection
- Loading branch information
Showing
424 changed files
with
35,975 additions
and
22,545 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,2 +1,43 @@ | ||
# black | ||
83e5f99051d86ca354b537be8854c40f9b6ce172 | ||
##### git-blame shows what revision and author last modified each line of a file | ||
##### The ".git-blame-ignore-revs" file is used to ignore certain revisions from being | ||
##### shown in the output of git blame (also on GitHub blame view). | ||
# | ||
# ~~~ Commits that only change the formatting of the code should be ignored. ~~~ | ||
# | ||
# --- Automated Formatting with `black` --- | ||
# MDAnalysis was automatically formatted with `black` (end of 2024, beginning of 2025). | ||
# Formatting PRs (should) contain "[fmt]" in the title (and so do the related commits). | ||
# See https://github.com/MDAnalysis/mdanalysis/issues/2450 for more details. | ||
# The following commits are squash commits that contain only^ formatting changes. | ||
# ^ This is not strictly true. See PRs for the nitty gritty details. | ||
#. PR numbers are listed just above the commit being ignored. | ||
#4725 | ||
571431a169e5881f7d09930c4d7e633df0f2cd40 | ||
#4726 | ||
46be788d84a6cb149d90e4493a726c3a30b3cca0 | ||
#4802 | ||
441e2c67abdb8a0a5ffac4a0bc5e88bc7c329aa8 | ||
#4804 | ||
25e755fd78e0a6fb71a91c9d3d989328f021f34b | ||
#4809 | ||
557f27d658ff0d4011bbe0efa03495f18aa2c1ce | ||
#4848 | ||
b710e57a64654bed5250eb771f0f27a2dddfeebf | ||
#4850 | ||
9110a6efe2765802856d028e650ebb0117d336bf | ||
#4851 | ||
a10e23e681023f383baac7582c39dce4180e2263 | ||
#4856 | ||
c08cb797fd1a2cb45bc0b9e4522cabb15d1f36bd | ||
#4857 | ||
29deccc9b43a09d2ec3b456bb9c70aae4c34c2cd | ||
#4859 | ||
9312fa67f163ec055a66f5756a182206fbea3130 | ||
#4861 | ||
55cce24003d4c0975b1bba387b9e6ac20638780e | ||
#4874 | ||
5eef34165b03281515e08a69159f6504e3a2ff8b | ||
#4875 | ||
b8fe34b73c9df9330c1608229b2f8cddc6e275b4 | ||
#4885 | ||
263bbe65047e535fbad981852ad9c7327826f93d |
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 |
---|---|---|
|
@@ -38,7 +38,7 @@ jobs: | |
matrix: | ||
buildplat: | ||
- [ubuntu-22.04, manylinux_x86_64, x86_64] | ||
- [macos-12, macosx_*, x86_64] | ||
- [macos-13, macosx_*, x86_64] | ||
- [windows-2019, win_amd64, AMD64] | ||
- [macos-14, macosx_*, arm64] | ||
python: ["cp310", "cp311", "cp312", "cp313"] | ||
|
@@ -139,7 +139,7 @@ jobs: | |
- name: move_test_dist | ||
run: | | ||
mkdir -p testsuite/dist | ||
mv dist/MDAnalysisTests-* testsuite/dist | ||
mv dist/mdanalysistests-* testsuite/dist | ||
- name: upload_source_and_wheels | ||
uses: pypa/[email protected] | ||
|
@@ -168,7 +168,7 @@ jobs: | |
- name: move_test_dist | ||
run: | | ||
mkdir -p testsuite/dist | ||
mv dist/MDAnalysisTests-* testsuite/dist | ||
mv dist/mdanalysistests-* testsuite/dist | ||
- name: upload_tests | ||
uses: pypa/[email protected] | ||
|
@@ -198,7 +198,7 @@ jobs: | |
- name: move_test_dist | ||
run: | | ||
mkdir -p testsuite/dist | ||
mv dist/MDAnalysisTests-* testsuite/dist | ||
mv dist/mdanalysistests-* testsuite/dist | ||
- name: upload_source_and_wheels | ||
uses: pypa/[email protected] | ||
|
@@ -224,7 +224,7 @@ jobs: | |
- name: move_test_dist | ||
run: | | ||
mkdir -p testsuite/dist | ||
mv dist/MDAnalysisTests-* testsuite/dist | ||
mv dist/mdanalysistests-* testsuite/dist | ||
- name: upload_tests | ||
uses: pypa/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
scanner: | ||
diff_only: True | ||
linter: pycodestyle | ||
|
||
pycodestyle: # Valid if scanner.linter is pycodestyle | ||
max-line-length: 79 | ||
ignore: ["E203", "E701", "W503"] | ||
exclude: [] | ||
count: False | ||
first: False | ||
show-pep8: False | ||
show-source: False | ||
statistics: False | ||
hang-closing: False | ||
filename: [] | ||
select: [] | ||
|
||
flake8: # Valid if scanner.linter is flake8 | ||
max-line-length: 79 | ||
ignore: ["E203", "E501", "E701", "W503"] | ||
exclude: [] | ||
count: False | ||
show-source: False | ||
statistics: False | ||
hang-closing: False | ||
filename: [] | ||
select: [] | ||
|
||
no_blank_comment: True | ||
descending_issues_order: False | ||
only_mention_files_with_errors: True | ||
|
||
message: | ||
opened: | ||
header: "" | ||
footer: "" | ||
updated: | ||
header: "" | ||
footer: "" | ||
no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " |
Oops, something went wrong.