FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-future/build.sh at master · wshanks/python-future · GitHub
wshanks
/
python-future
Public
forked from
PythonCharmers/python-future
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-future
/
build.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
17 lines (13 loc) · 544 Bytes
Breadcrumbs
python-future
/
build.sh
Copy path
File metadata and controls
executable file
·
17 lines (13 loc) · 544 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
XXX: TODO: we should make this include -e once tests pass
set
-xuo pipefail
DOCKER_IMAGE=jmadler/python-future-builder
#
XXX: TODO: Perhaps this version shouldn't be hardcoded
version=0.18.2
docker build
.
-t
$DOCKER_IMAGE
docker push
$DOCKER_IMAGE
:latest
for
i
in
py26 py27 py33 py34 py35 py36 py37 py38 py39
;
do
docker run -ti -v
$(
realpath dist
)
:/root/python-future/dist
$DOCKER_IMAGE
/root/python-future/setup.sh
$version
$(
basename
$i
)
done
python setup.py sdist
python setup.py clean
echo
You may now run:
"
twine upload dist/*
"
Back
|
FazBrowse Home
|
New Git URL