Skip to content

Commit 9ad699f

Browse files
committed
Release
1 parent 52ded1a commit 9ad699f

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

HISTORY.rst

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

4+
3.0.4
5+
~~~~~
6+
7+
* Another attempt to get the pypi package to work
8+
49
3.0.3
510
~~~~~
611

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ docs:
4141

4242
dist: clean
4343
python setup.py sdist
44-
python setup.py bdist_wheel
4544
ls -l dist
4645

4746
tag:
@@ -51,4 +50,4 @@ release-check:
5150
python setup.py release_check
5251

5352
release:
54-
rm -rf dist/ build/ && python setup.py sdist bdist_wheel && twine upload dist/*
53+
rm -rf dist/ build/ && python setup.py sdist && 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.3'
7+
__version__ = '3.0.4'
88

99

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

setup.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,6 @@ def run(self):
6565

6666
print("Ok to distribute files")
6767

68-
69-
test_reqs = read_reqs('test_requirements.txt')
70-
extras_reqs = {
71-
'pytest': [
72-
item for item in test_reqs if item.startswith('pytest')],
73-
'coverage': [
74-
item for item in test_reqs if item.startswith('coverage')],
75-
'patch': [
76-
item for item in test_reqs if item.startswith('whatthepatch')],
77-
}
78-
7968
running_inside_tests = any('pytest' in x[1] or 'hammett' in x[1] for x in inspect.stack())
8069

8170
# NB: _don't_ add namespace_packages to setup(), it'll break
@@ -95,8 +84,6 @@ def run(self):
9584
zip_safe=False,
9685
keywords='mutmut mutant mutation test testing',
9786
install_requires=read_reqs('requirements.txt'),
98-
extras_require=extras_reqs,
99-
tests_require=test_reqs,
10087
classifiers=[
10188
'Development Status :: 4 - Beta',
10289
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)