Skip to content

Commit 1f7afc6

Browse files
authored
Merge pull request travitch#81 from SRI-CSL/master
Keeping in sync
2 parents c0d792d + 3c32e3a commit 1f7afc6

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,18 @@ develop:
2626

2727

2828
dist: clean
29-
python setup.py bdist_wheel
29+
python3 setup.py sdist bdist_wheel
3030

3131
# If you need to push this project again,
3232
# INCREASE the version number in wllvm/version.py,
3333
# otherwise the server will give you an error.
3434

35-
publish: dist
36-
python setup.py sdist upload
35+
#publish: dist
36+
# python setup.py sdist upload
37+
38+
publish:
39+
python3 -m twine upload dist/*
40+
3741

3842
install:
3943
pip install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
![WLLVM](img/dragon128x128.png?raw_true)Whole Program LLVM
2-
==================
2+
33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44
[![PyPI version](https://badge.fury.io/py/wllvm.svg)](https://badge.fury.io/py/wllvm)
55
[![Build Status](https://travis-ci.org/SRI-CSL/whole-program-llvm.svg?branch=master)](https://travis-ci.org/SRI-CSL/whole-program-llvm)

wllvm/version.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@
7070
7171
1.2.3 - 4/15/2019 The tax day version. Almost a years worth of tweaks from building large things like the Linux kernel.
7272
73+
1.2.4 - 4/15/2019 The tax day version, II. Testing the twine upload.
74+
75+
1.2.5 - 4/17/2019 Fixing the pip package, hopefully.
76+
7377
"""
7478

75-
wllvm_version = '1.2.3'
76-
wllvm_date = 'April 15 2019'
79+
wllvm_version = '1.2.5'
80+
wllvm_date = 'April 17 2019'

0 commit comments

Comments
 (0)