Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools_dso
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
setuptools_dso
Commits
75ed6c77
Commit
75ed6c77
authored
Nov 17, 2019
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis-ci release
parent
b49e171c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
.travis.yml
.travis.yml
+8
-0
setup.py
setup.py
+1
-1
travis-docker.sh
travis-docker.sh
+1
-0
travis-osx.sh
travis-osx.sh
+1
-0
No files found.
.travis.yml
View file @
75ed6c77
...
...
@@ -30,3 +30,11 @@ matrix:
language
:
generic
env
:
PYTHON=python3 PYVER=3.6 URL=https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg
script
:
./travis-osx.sh
after_success
:
-
|
if [ "$TRAVIS_TAG" -a "$TWINE_USERNAME" ] ; then
echo "Deploying"
${PYTHON:-python} -m pip install twine
${PYTHON:-python} -m twine upload --skip-existing dist/*.tar.* dist/*.whl || true
fi
setup.py
View file @
75ed6c77
...
...
@@ -4,7 +4,7 @@ from setuptools import setup, Extension
setup
(
name
=
'setuptools_dso'
,
version
=
"1.
2
"
,
version
=
"1.
3
"
,
description
=
"setuptools extension to build non-python shared libraries"
,
long_description
=
"""setuptools extension for building non-python shared libraries
and packaging them for distribution. eg. for use by python extensions.
...
...
travis-docker.sh
View file @
75ed6c77
...
...
@@ -15,6 +15,7 @@ do
rm
-rf
build
"
${
PYBIN
}
/python"
setup.py clean
-a
"
${
PYBIN
}
/python"
setup.py sdist
find
.
...
...
travis-osx.sh
View file @
75ed6c77
...
...
@@ -22,6 +22,7 @@ $PYTHON -m pip install --upgrade wheel
"
$PYTHON
"
setup.py clean
-a
"
$PYTHON
"
setup.py sdist
"
$PYTHON
"
setup.py
-v
install
cd
example
...
...
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