Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
PyPy
cffi
Commits
870af0b7cdf9
Commit
a685151d
authored
Nov 29, 2020
by
Armin Rigo
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
source-only update, to version number 1.14.4-1
--HG-- branch : release-1.14
parent
bc6648a47347
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
doc/source/installation.rst
doc/source/installation.rst
+4
-4
testing/cffi0/test_version.py
testing/cffi0/test_version.py
+6
-1
No files found.
doc/source/installation.rst
View file @
870af0b7
...
...
@@ -52,13 +52,13 @@ Download and Installation:
* https://pypi.python.org/pypi/cffi
* Checksums of the "source" package version 1.14.4:
* Checksums of the "source" package version 1.14.4
-1
:
- MD5:
ad3d8537b1516bad6bcdc36c458788be
- MD5:
...
- SHA:
45bd57a0903a2d63b93461e096c5d291875a457b
- SHA:
...
- SHA256:
1a465cbe98a7fd391d47dce4b8f7e5b921e6cd805ef421d04f5f66ba8f06086c
- SHA256:
...
* Or grab the most current version from the `Heptapod page`_:
``hg clone https://foss.heptapod.net/pypy/cffi``
...
...
testing/cffi0/test_version.py
View file @
870af0b7
...
...
@@ -36,7 +36,12 @@ def test_doc_version_file():
v
=
cffi
.
__version__
.
replace
(
'+'
,
''
)
p
=
os
.
path
.
join
(
parent
,
'doc'
,
'source'
,
'installation.rst'
)
content
=
open
(
p
).
read
()
assert
(
" package version %s:"
%
v
)
in
content
if
" package version %s:"
%
v
not
in
content
:
for
i
in
range
(
5
):
if
" package version %s-%d:"
%
(
v
,
i
)
in
content
:
break
else
:
assert
0
,
"doc/source/installation.rst needs updating"
def
test_setup_version
():
parent
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
cffi
.
__file__
))
...
...
Armin Rigo
@arigo
mentioned in commit
aae2be1b3cae
·
Nov 29, 2020
mentioned in commit
aae2be1b3cae
mentioned in commit 0d26f2450bd74d2205d247a3c75817a9b52c77ff
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment