Skip to content

Commit 5848f30

Browse files
committed
Release
1 parent 9ad699f commit 5848f30

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
---------
33

4+
3.0.5
5+
~~~~~
6+
7+
* Another attempt to get the pypi package to work
8+
9+
410
3.0.4
511
~~~~~
612

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ include HISTORY.rst
22
include LICENSE
33
include README.rst
44
include requirements.txt
5-
recursive-include mutmut *.tcss
65
exclude tests/*.*
6+
recursive-include mutmut *.*

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ docs:
4040
tox -e docs
4141

4242
dist: clean
43-
python setup.py sdist
44-
ls -l dist
43+
python -m build --no-isolation
4544

4645
tag:
4746
python setup.py tag
@@ -50,4 +49,4 @@ release-check:
5049
python setup.py release_check
5150

5251
release:
53-
rm -rf dist/ build/ && python setup.py sdist && twine upload dist/*
52+
rm -rf dist/ build/ && python setup.py sdist bdist_wheel && twine upload dist/*

mutmut/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Number,
55
)
66

7-
__version__ = '3.0.4'
7+
__version__ = '3.0.5'
88

99

1010
# We have a global whitelist for constants of the pattern __all__, __version__, etc

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[wheel]
2-
universal = 1
3-
41
[tool:pytest]
52
testpaths=tests
63
# --strict: warnings become errors.

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ def run(self):
7979
url='https://github.com/boxed/mutmut',
8080
packages=find_packages('.'),
8181
package_dir={'': '.'},
82+
package_data={
83+
'mutmut': ['*.tcss'],
84+
},
8285
include_package_data=True,
8386
license="BSD",
8487
zip_safe=False,

0 commit comments

Comments
 (0)