File tree 4 files changed +21
-13
lines changed
4 files changed +21
-13
lines changed Original file line number Diff line number Diff line change 2
2
History
3
3
=======
4
4
5
- 0.7.8 (2017-06-20 )
5
+ 0.7.9 (2017-06-21 )
6
6
------------------
7
7
8
8
* First release on PyPI.
Original file line number Diff line number Diff line change 1
1
2
2
include AUTHORS.rst
3
3
4
+
4
5
include CONTRIBUTING.rst
5
6
include HISTORY.rst
6
7
include LICENSE
7
8
include README.rst
8
9
9
- recursive-include tests/ *.py
10
- recursive-exclude * __pycache__
11
- recursive-exclude * *.py[co]
12
-
10
+ recursive-include tests *.py
13
11
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
14
12
15
13
# we only want "release" artifacts, not "debug" artifacts
14
+ # update this path if you move the rust folder
16
15
recursive-include */rust/target/release *.so *.dylib *.dll *.lib
17
- recursive-include * *.h *.c
16
+ # also don't end the path with a "/"
18
17
19
- # inclusing the .rs and .toml files isn't necessary so feel free to remove them.
20
- # This may help if a source dist is needed.
21
- #recursive-include rust_pypi_example *.rs *.toml
18
+ recursive-include * *.h
19
+
20
+ # This should help with the sdist
21
+ recursive-include * *.c *.rs *.toml
22
+
23
+ recursive-exclude * __pycache__
24
+ recursive-exclude * *.pyc
25
+ recursive-exclude * *.pyo
Original file line number Diff line number Diff line change @@ -25,19 +25,20 @@ install:
25
25
26
26
before_build :
27
27
commands :
28
- - $<RUN_ENV> $<PYTHON> setup.py clean
28
+ - $<RUN_ENV> $<PYTHON> setup.py --verbose clean
29
29
30
30
build :
31
31
commands :
32
- - $<RUN_ENV> $<PYTHON> setup.py bdist_wheel --plat-name=$<WHEELPLATFORM>
32
+ - $<RUN_ENV> $<PYTHON> setup.py --verbose build_ext
33
+ - $<RUN_ENV> $<PYTHON> setup.py --verbose bdist_wheel --plat-name=$<WHEELPLATFORM>
33
34
34
35
test :
35
36
appveyor :
36
37
environment :
37
38
PATH : $<PYTHON_DIR>\\Scripts;$<PATH>
38
39
39
40
commands :
40
- - $<RUN_ENV> $<PYTHON> setup.py test
41
+ - $<RUN_ENV> $<PYTHON> setup.py --verbose test
41
42
42
43
after_test :
43
44
# commands:
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ replace = {new_version}
19
19
search = {current_version}
20
20
replace = {new_version}
21
21
22
+
23
+
22
24
[flake8]
23
25
exclude = docs
24
26
@@ -27,5 +29,6 @@ test = pytest
27
29
28
30
[tool:pytest]
29
31
testpaths = tests
30
- addopts = --verbose
31
32
33
+
34
+ addopts = --verbose
You can’t perform that action at this time.
0 commit comments