Skip to content

Commit d5d6f17

Browse files
authored
Merge pull request #127 from alisnwu/recut-release
Recut - update REAMDE, remove unnecessary files, use GitHub release workflowRecut release
2 parents 6528940 + ce8cdef commit d5d6f17

File tree

6 files changed

+99
-5
lines changed

6 files changed

+99
-5
lines changed

.github/ISSUE_TEMPLATE/bug_feature.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Bug Report or Feature Request
3+
about: Report a bug or suggest a new feature!
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
### Problem
10+
11+
<!--
12+
For a bug report, please copy and paste any error messages from the application or command-line here.
13+
For a feature request, please state how the new functionality could benefit the community.
14+
-->
15+
16+
### Proposed solution
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Release
3+
about: Checklist and communication channel for PyPI and GitHub release
4+
title: "Ready for <version-number> PyPI/GitHub release"
5+
labels: "release"
6+
assignees: ""
7+
---
8+
9+
### Release checklist for GitHub contributors
10+
11+
- [ ] All PRs/issues attached to the release are merged.
12+
- [ ] All the badges on the README are passing.
13+
- [ ] License information is verified as correct. If you are unsure, please comment below.
14+
- [ ] Locally rendered documentation contains all appropriate pages, including API references (check no modules are
15+
missing), tutorials, and other human written text is up-to-date with any changes in the code.
16+
- [ ] Installation instructions in the README, documentation and on the website (e.g., diffpy.org) are updated and
17+
tested
18+
- [ ] Successfully run any tutorial examples or do functional testing in some other way.
19+
- [ ] Grammar and writing quality have been checked (no typos).
20+
21+
Please mention @sbillinge when you are ready for release. Include any additional comments necessary, such as
22+
version information and details about the pre-release.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release (GitHub/PyPI)
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- '*' # Trigger on all tags initially, but tag and release privilege are verified in _build-wheel-release-upload.yml
8+
9+
jobs:
10+
release:
11+
uses: Billingegroup/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0
12+
with:
13+
project: diffpy.utils
14+
secrets:
15+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
16+
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}

README.rst

+12-5
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,18 @@ To add "conda-forge" to the conda channels, run the following in a terminal. ::
8080
We want to install our packages in a suitable conda environment.
8181
The following creates and activates a new environment named ``diffpy.utils_env`` ::
8282

83-
conda create -n diffpy.utils_env python=3
83+
conda create -n diffpy.utils_env diffpy.utils
8484
conda activate diffpy.utils_env
8585

86-
Then, to fully install ``diffpy.utils`` in our active environment, run ::
86+
To confirm that the installation was successful, type ::
8787

88-
conda install diffpy.utils
88+
python -c "import diffpy.utils; print(diffpy.utils.__version__)"
8989

90-
Another option is to use ``pip`` to download and install the latest release from
90+
The output should print the latest version displayed on the badges above.
91+
92+
If the above does not work, you can use ``pip`` to download and install the latest release from
9193
`Python Package Index <https://pypi.python.org>`_.
92-
To install using ``pip`` into your ``diffpy.utils_env`` environment type ::
94+
To install using ``pip`` into your ``diffpy.utils_env`` environment, type ::
9395

9496
pip install diffpy.utils
9597

@@ -99,6 +101,11 @@ and run the following ::
99101

100102
pip install .
101103

104+
Getting Started
105+
---------------
106+
107+
You may consult our `online documentation <https://diffpy.github.io/diffpy.utils>`_ for tutorials and API references.
108+
102109
Support and Contribute
103110
----------------------
104111

news/recut.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* <news item>
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* Recut to group's package standard, fix installation, add GitHub release workflow
20+
21+
**Security:**
22+
23+
* <news item>

tests/test_version.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""Unit tests for __version__.py
2+
"""
3+
4+
import diffpy.utils
5+
6+
7+
def test_package_version():
8+
"""Ensure the package version is defined and not set to the initial placeholder."""
9+
assert hasattr(diffpy.utils, "__version__")
10+
assert diffpy.utils.__version__ != "0.0.0"

0 commit comments

Comments
 (0)