File tree Expand file tree Collapse file tree 4 files changed +37
-0
lines changed
Expand file tree Collapse file tree 4 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ **Added **
2+ - CI Coverage.
3+ - New tests for loadData function.
4+ - loadData function now toggleable. Can return either (a) data read from data blocks or (b) header
5+ information stored above the data block.
6+
7+ **Removed **
8+ - Remove use of pkg_resources (deprecated).
9+ - No longer use Travis.
Original file line number Diff line number Diff line change 1+ ***Added* **
2+ - Compatibility with Python 3.10, 3.9, 3.8
3+
4+ ***Removed* **
5+ - Remove the support for Python 3.5, 3.6.
Original file line number Diff line number Diff line change 1+ ***Added* **
2+ - Compatibility with Python 3.7, 3.6, 3.5 in addition to 2.7.
3+
4+ ***Changed* **
5+ - Switch to platform-independent "noarch" Anaconda package.
6+
7+ ***Deprecated* **
8+ - Variable `__gitsha__ ` in the `version ` module which was renamed
9+ to `__git_commit__ `.
Original file line number Diff line number Diff line change 1+ $PROJECT = 'diffpy.utils'
2+ $ACTIVITIES = [
3+ 'tag' , # Creates a tag for the new version number
4+ 'push_tag' , # Pushes the tag up to the $TAG_REMOTE
5+ 'pypi' , # Sends the package to pypi
6+ 'ghrelease' # Creates a Github release entry for the new tag
7+ ]
8+ $PUSH_TAG_REMOTE = 'git@github.com:diffpy/diffpy.utils.git' # Repo to push tags to
9+ $GITHUB_ORG = 'diffpy' # Github org for Github releases and conda-forge
10+ $GITHUB_REPO = 'diffpy.utils' # Github repo for Github releases and conda-forge
11+ $GHRELEASE_PREPEND = """See [CHANGELOG.md](CHANGELOG.md) for detailed release notes.
12+
13+ The release is also available at [PyPI](https://pypi.org/project/diffpy.utils/) and [Conda](https://anaconda.org/conda-forge/diffpy.utils).
14+ """ # release message
You can’t perform that action at this time.
0 commit comments