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
1e30a56ecaf4
Commit
930d4637
authored
Nov 29, 2020
by
Armin Rigo
Browse files
Options
Browse Files
Download
Plain Diff
hg merge release-1.14
parents
1301310bd1ef
aae2be1b3cae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
.hgtags
.hgtags
+1
-0
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.
.hgtags
View file @
1e30a56e
...
...
@@ -29,3 +29,4 @@ bf80722dea36237710083315e336c81bc8571fd0 v1.12.3
e927dba37deee51b087d1345868c353779a0ebe2 v1.14.2
56a682f7336ddc51b99a04149249a47e928fd129 v1.14.3
ede015a0e6203ba3057f3842063786683caccff6 v1.14.4
870af0b7cdf9dfae2d582158b4bfcda96987c42e v1.14.4-1
doc/source/installation.rst
View file @
1e30a56e
...
...
@@ -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:
49d23fb1a9d2e0370c9cfdfd3c0aaa3b
- SHA:
45bd57a0903a2d63b93461e096c5d291875a457b
- SHA:
fcbe2ec59314472d59bc7664e45f66e1d60c0e0e
- SHA256:
1a465cbe98a7fd391d47dce4b8f7e5b921e6cd805ef421d04f5f66ba8f06086c
- SHA256:
973d22ceb4100cb82c4be155a2f7e20d787f64bde9011ebc6dd84161c509b7b7
* 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 @
1e30a56e
...
...
@@ -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__
))
...
...
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