We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 570d10b commit fa9fd5aCopy full SHA for fa9fd5a
2 files changed
release
@@ -0,0 +1,16 @@
1
+update the version number in setup.py with yy.mm.dd
2
+python setup.py sdist upload -r pypi
3
+
4
+TEST:
5
+open new terminal
6
+mkvirtualenv adf
7
+pip install cppimport
8
+cd ~/projects/cppimport/tests
9
+python -c "import cppimport; assert(cppimport.imp("mymodule").add(1,2) == 3);"
10
11
+GIT:
12
+git commit -m "yy.mm.dd"
13
+git push
14
+git tag yy.mm.dd
15
+git push origin yy.mm.dd
16
setup.py
@@ -20,7 +20,7 @@
20
},
21
22
name = 'cppimport',
23
- version = '17.07.24',
+ version = '17.09.18',
24
description = 'Import C++ files directly from Python!',
25
long_description = description,
26
0 commit comments