-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Yang
committed
Sep 15, 2023
1 parent
9aa595e
commit 5c868d1
Showing
4 changed files
with
37 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
**Added** | ||
- CI Coverage. | ||
- New tests for loadData function. | ||
- loadData function now toggleable. Can return either (a) data read from data blocks or (b) header | ||
information stored above the data block. | ||
|
||
**Removed** | ||
- Remove use of pkg_resources (deprecated). | ||
- No longer use Travis. |
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,5 @@ | ||
***Added*** | ||
- Compatibility with Python 3.10, 3.9, 3.8 | ||
|
||
***Removed*** | ||
- Remove the support for Python 3.5, 3.6. |
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,9 @@ | ||
***Added*** | ||
- Compatibility with Python 3.7, 3.6, 3.5 in addition to 2.7. | ||
|
||
***Changed*** | ||
- Switch to platform-independent "noarch" Anaconda package. | ||
|
||
***Deprecated*** | ||
- Variable `__gitsha__` in the `version` module which was renamed | ||
to `__git_commit__`. |
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,14 @@ | ||
$PROJECT = 'diffpy.utils' | ||
$ACTIVITIES = [ | ||
'tag', # Creates a tag for the new version number | ||
'push_tag', # Pushes the tag up to the $TAG_REMOTE | ||
'pypi', # Sends the package to pypi | ||
'ghrelease' # Creates a Github release entry for the new tag | ||
] | ||
$PUSH_TAG_REMOTE = 'git@github.com:diffpy/diffpy.utils.git' # Repo to push tags to | ||
$GITHUB_ORG = 'diffpy' # Github org for Github releases and conda-forge | ||
$GITHUB_REPO = 'diffpy.utils' # Github repo for Github releases and conda-forge | ||
$GHRELEASE_PREPEND = """See [CHANGELOG.md](CHANGELOG.md) for detailed release notes. | ||
The release is also available at [PyPI](https://pypi.org/project/diffpy.pdffit2/) and [Conda](https://anaconda.org/conda-forge/diffpy.pdffit2). | ||
""" # release message |