8000 README: add recipe for how to update mpdecimal sources · python/cpython-source-deps@5110f51 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5110f51

Browse files
README: add recipe for how to update mpdecimal sources
1 parent d239d63 commit 5110f51

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
1-
# cpython-source-deps
2-
Source for packages that the cpython build process depends on
1+
# The mpdecimal source code
2+
3+
How to update the mpdecimal source code in this branch:
4+
5+
1. Dowload the new sources in tar.gz format from the
6+
[mpdecimal download page](https://www.bytereef.org/mpdecimal/download.html).
7+
8+
2. Validate the SHA256 checksum of the downloaded file.
9+
10+
3. Unpack the source code and commit the changes:
11+
12+
```console
13+
# Example with mpdecimal version 4.0.0
14+
$ git commit -am "Add mpdecimal 4.0.0 sources"
15+
```
16+
17+
5. Tag the new commit:
18+
19+
```
20+
$ git tag -sam "mpdecimal 4.0.0" mpdecimal-4.0.0
21+
```
22+
23+
6. Push changes, including tags, upstream.

0 commit comments

Comments
 (0)
0