Skip to content

Commit ab4c04c

Browse files
committed
Update after PR comments
1 parent 4756d3a commit ab4c04c

File tree

4 files changed

+7
-35
lines changed

4 files changed

+7
-35
lines changed

MANIFEST.in

-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
include CHANGELOG.md
2-
include CONTRIBUTING.md
3-
include README.md
41
include requirements.txt
52
include LICENSE

Makefile

-24
This file was deleted.

README.release.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
- Update the release history in `CHANGELOG.md`:
77
- Change "Unreleased" to the current release version and date.
88
- Create empty "Unreleased" section.
9-
- Add proper link to the new release (at the bottom of the file).
9+
- Add proper link to the new release (at the bottom of the file). Use GitHub [compare feature](https://docs.github.com/en/free-pro-team@latest/github/committing-changes-to-your-project/comparing-commits#comparing-tags) between two tags.
1010
- Update "Unreleased" link (at the bottom of the file).
11-
- Copy the main usage string (from `python -m b2`) to `README.md`.
11+
- Copy the main usage string (from `b2 --help`) to `README.md`.
1212
- Run linters and tests:
1313
- `export B2_TEST_APPLICATION_KEY=your_app_key`
1414
- `export B2_TEST_APPLICATION_KEY_ID=your_app_key_id`
@@ -18,12 +18,13 @@
1818
- Commit and push to GitHub, then wait for CI workflow to complete successfully.
1919
- No need to make a branch. Push straight to `master`.
2020
- Tag in git and push tag to `origin`. (Version tags look like `v0.4.6`.)
21-
- `git tag vx.x.x`
22-
- `git push origin vx.x.x`
21+
- `git tag vx.x.x`
22+
- `git push origin vx.x.x`
2323
- Wait for CD workflow to complete successfully.
2424
- Verify that the GitHub release is created
2525
- Verify that the release has been uploaded to the PyPI
26-
- Install using `pip` and verify that it gets the correct version.
26+
- Install using `pip` and verify that it gets the correct version:
27+
- `pip install -U b2`
2728
- Upload binaries to GitHub releases
2829
- Update for dev:
2930
- Bump the version number to an odd number (for example: 1.0.2 -> 1.0.3)

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@
125125

126126
# If there are data files included in your packages that need to be
127127
# installed, specify them here.
128-
package_data={
129-
'b2': ['CHANGELOG.md', 'CONTRIBUTING.md', 'README.md', 'requirements.txt', 'LICENSE']
130-
},
128+
package_data={'b2': ['requirements.txt', 'LICENSE']},
131129

132130
# Although 'package_data' is the preferred approach, in some case you may
133131
# need to place data files outside of your packages. See:

0 commit comments

Comments
 (0)