-
Notifications
You must be signed in to change notification settings - Fork 8
skpkg: migrate src and tests folders as well as .git #160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,14 +1,14 @@ | ||
| coverage: | ||
| status: | ||
| project: # more options at https://docs.codecov.com/docs/commit-status | ||
| project: # more options at https://docs.codecov.com/docs/commit-status | ||
| default: | ||
| target: auto # use the coverage from the base commit, fail if coverage is lower | ||
| threshold: 0% # allow the coverage to drop by | ||
| threshold: 0% # allow the coverage to drop by | ||
|
|
||
| comment: | ||
| layout: " diff, flags, files" | ||
| behavior: default | ||
| require_changes: false | ||
| require_base: false # [true :: must have a base report to post] | ||
| require_head: false # [true :: must have a head report to post] | ||
| require_base: false # [true :: must have a base report to post] | ||
| require_head: false # [true :: must have a head report to post] | ||
| hide_project_coverage: false # [true :: only show coverage on the git diff aka patch coverage] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,15 @@ | ||
| ### What problem does this PR address? | ||
|
|
||
| <!-- Provide a brief overview and link to the issue. Attach outputs, including screenshots (before/after), if helpful for the reviewer. --> | ||
|
|
||
| ### What should the reviewer(s) do? | ||
|
|
||
| <!-- Merge the code, provide feedback, initiate a discussion, etc. --> | ||
|
|
||
| <!-- | ||
| Use the following checklist items when applicable (select only what applies): | ||
| - [ ] This PR introduces a public-facing change (e.g., figures, CLI input/output, API). | ||
| - [ ] Documentation (e.g., tutorials, examples, README) has been updated. | ||
| - [ ] A tracking issue or plan to update documentation exists. | ||
| - [ ] This PR affects internal functionality only (no user-facing change). | ||
| --> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,12 @@ | ||
| name: Deploy Documentation on Release | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| docs: | ||
| uses: scikit-package/release-scripts/.github/workflows/_publish-docs-on-release.yml@v0 | ||
| with: | ||
| project: diffpy-srmise | ||
| c_extension: false | ||
| headless: false |
This file contains hidden or 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 hidden or 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 hidden or 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,4 +1,5 @@ | ||
| [settings] | ||
| # Keep import statement below line_length character limit | ||
| line_length = 115 | ||
| multi_line_output = 3 | ||
| include_trailing_comma = True |
This file contains hidden or 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 hidden or 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,13 @@ | ||
| version: 2 | ||
|
|
||
| build: | ||
| os: "ubuntu-22.04" | ||
| tools: | ||
| python: "latest" | ||
|
|
||
| python: | ||
| install: | ||
| - requirements: requirements/docs.txt | ||
|
|
||
| sphinx: | ||
| configuration: doc/source/conf.py |
This file contains hidden or 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,11 +1,10 @@ | ||
| Authors | ||
| ======= | ||
|
|
||
| Luke Granlund | ||
| Billinge Group and community contributors. | ||
| Simon Billinge, Billinge Group members | ||
|
|
||
| Contributors | ||
| ------------ | ||
|
|
||
| For a list of contributors, visit | ||
| https://github.com/diffpy/diffpy.srmise/graphs/contributors | ||
| https://github.com/diffpy/diffpy-srmise/graphs/contributors |
This file contains hidden or 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,53 +1,5 @@ | ||
| ============= | ||
| Release Notes | ||
| Release notes | ||
| ============= | ||
|
|
||
| .. current developments | ||
| 0.7.0 | ||
| ===== | ||
|
|
||
| **Added:** | ||
|
|
||
| * Support for Python 3.13 | ||
|
|
||
| **Removed:** | ||
|
|
||
| * Support for Python 3.10 | ||
|
|
||
|
|
||
| 0.6.1 | ||
| ===== | ||
|
|
||
| **Fixed:** | ||
|
|
||
| * Recut to group's package standard, fix installation, add GitHub release workflow | ||
| * Update Python, matploblib API to run documentation CLI tutorials | ||
| * support setuptools-git-versioning>=2.0 | ||
| * Configure entry point in pyproject.toml to run CLI commands | ||
|
|
||
|
|
||
| 0.6.0 | ||
| ===== | ||
|
|
||
| **Added:** | ||
|
|
||
| * add api workflow | ||
|
|
||
| **Changed:** | ||
|
|
||
| * Moved diffpy.srmise from python2 to python3. | ||
| * Used dynamic api build generated by new cookiecutter. | ||
| * Changed workflow for build to satisfy new cookiecutter | ||
|
|
||
| **Removed:** | ||
|
|
||
| * Removed travis.yml and other useless files | ||
|
|
||
| **Fixed:** | ||
|
|
||
| * Recookiecuttered diffpy.srmise to new BillingeGroup standard | ||
| * Fixed numpy format boolean counting, numpy int slicing error. | ||
| * Cookiecuttered diffpy.srmise to new Billingegroup standard. | ||
| * add pip dependencies under pip.txt, conda dependencies under conda.txt | ||
| * add tutorial and extending examples to docs | ||
This file contains hidden or 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 hidden or 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,23 +1,8 @@ | ||
| BSD 3-Clause License | ||
|
|
||
| Copyright 2014-2015, Board of Trustees of Michigan State University | ||
| 2016-2024, The Trustees of Columbia University in the City of New York. | ||
| Copyright (c) 2025, The Trustees of Columbia University in the City of New York. | ||
| All rights reserved. | ||
|
|
||
| If you use this program to do productive scientific research that | ||
| leads to publication, we ask that you acknowledge use of the | ||
| program by citing the following paper in your publication: | ||
|
|
||
| L. Granlund, S. J. L. Billinge and P. M. Duxbury, | ||
| `Algorithm for systematic peak extraction from atomic pair distribution functions | ||
| <http://dx.doi.org/10.1107/S2053273315005276>`__, | ||
| *Acta Crystallogr. A* **4**, 392-409 (2015). | ||
|
|
||
| For more information please visit the diffpy web-page at | ||
| http://www.diffpy.org | ||
| or email Luke Granlund at [email protected], or Prof. Simon | ||
| Billinge at [email protected]. | ||
|
|
||
| Redistribution and use in source and binary forms, with or without | ||
| modification, are permitted provided that the following conditions are met: | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't want to lose this changelog history