Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
a977d555
Commit
a977d555
authored
Dec 08, 2021
by
Stefane Fermigier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix release and rerelease.
parent
6c6bd113
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
Makefile
Makefile
+11
-0
README.rst
README.rst
+2
-1
setup.py
setup.py
+3
-2
No files found.
Makefile
View file @
a977d555
...
@@ -81,3 +81,14 @@ wheel_manylinux32 wheel_manylinux64: dist/$(PACKAGENAME)-$(VERSION).tar.gz
...
@@ -81,3 +81,14 @@ wheel_manylinux32 wheel_manylinux64: dist/$(PACKAGENAME)-$(VERSION).tar.gz
{ $$PYBIN/pip wheel -w /io/$$WHEELHOUSE /io/$< & } ; \
{ $$PYBIN/pip wheel -w /io/$$WHEELHOUSE /io/$< & } ; \
done; wait; \
done; wait; \
for whl in /io/$$WHEELHOUSE/
$(PACKAGENAME)
-
$(VERSION)
-*-linux_*.whl; do auditwheel repair $$whl -w /io/$$WHEELHOUSE; done'
for whl in /io/$$WHEELHOUSE/
$(PACKAGENAME)
-
$(VERSION)
-*-linux_*.whl; do auditwheel repair $$whl -w /io/$$WHEELHOUSE; done'
#
# Additional targets by sfermigier
#
.PHONY
:
release
release
:
@
make clean
rm
-rf
dist
python setup.py sdist
twine upload dist/
*
README.rst
View file @
a977d555
...
@@ -2,9 +2,10 @@ Cython+ - Multi-core concurrent programming in Python
...
@@ -2,9 +2,10 @@ Cython+ - Multi-core concurrent programming in Python
======================================================
======================================================
..
warning
::
..
warning
::
This
is
the
README
for
the
`
Cython
+
<
https
://
cython
.
plus
/>`
_
.
This
is
the
README
for
the
`
Cython
+
<
https
://
cython
.
plus
/>`
_
.
Since
Cython
+
is
heavily
based
on
`
Cython
<
https
://
cython
.
org
/>`
_
,
Since
Cython
+
is
heavily
based
on
`
Cython
<
https
://
cython
.
org
/>`
_
,
you
may
w
ith
to
read
also
the
`
README
for
Cython
<./
README
-
Cython
.
rst
>`
_
.*
you
may
w
ant
to
read
also
the
`
README
for
Cython
<./
README
-
Cython
.
rst
>`
_
.*
What
's Cython?
What
's Cython?
...
...
setup.py
View file @
a977d555
...
@@ -20,12 +20,12 @@ PYTHON_REQUIRES = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
...
@@ -20,12 +20,12 @@ PYTHON_REQUIRES = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
# Metadata for the Cython+ project
# Metadata for the Cython+ project
#
#
NAME
=
"cython-plus"
NAME
=
"cython-plus"
VERSION
=
"0.1.0"
VERSION
=
"0.1.0
.post2
"
HOME
=
"https://cython.plus/"
HOME
=
"https://cython.plus/"
AUTHOR
=
'The Cython+ consortium + the original Cython authors'
AUTHOR
=
'The Cython+ consortium + the original Cython authors'
AUTHOR_EMAIL
=
'contact@cython.plus'
AUTHOR_EMAIL
=
'contact@cython.plus'
DESCRIPTION
=
"Multi-core concurrent programming in Python, based on the Cython language"
DESCRIPTION
=
"Multi-core concurrent programming in Python, based on the Cython language"
LONG_DESCRIPTION
=
open
(
"README.rst"
).
read
()
#
#
# Original setup.py
# Original setup.py
...
@@ -256,6 +256,7 @@ def run_build():
...
@@ -256,6 +256,7 @@ def run_build():
author
=
AUTHOR
,
author
=
AUTHOR
,
author_email
=
AUTHOR_EMAIL
,
author_email
=
AUTHOR_EMAIL
,
description
=
DESCRIPTION
,
description
=
DESCRIPTION
,
long_description
=
LONG_DESCRIPTION
,
license
=
'Apache'
,
license
=
'Apache'
,
classifiers
=
[
classifiers
=
[
dev_status
(
version
),
dev_status
(
version
),
...
...
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