File tree Expand file tree Collapse file tree 4 files changed +7
-16
lines changed
Expand file tree Collapse file tree 4 files changed +7
-16
lines changed Original file line number Diff line number Diff line change 11Changelog
22---------
33
4+ 3.0.4
5+ ~~~~~
6+
7+ * Another attempt to get the pypi package to work
8+
493.0.3
510~~~~~
611
Original file line number Diff line number Diff line change 4141
4242dist : clean
4343 python setup.py sdist
44- python setup.py bdist_wheel
4544 ls -l dist
4645
4746tag :
@@ -51,4 +50,4 @@ release-check:
5150 python setup.py release_check
5251
5352release :
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/*
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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-
7968running_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' ,
You can’t perform that action at this time.
0 commit comments