Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
boxed committed Oct 20, 2024
1 parent 52ded1a commit 9ad699f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
---------

3.0.4
~~~~~

* Another attempt to get the pypi package to work

3.0.3
~~~~~

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ docs:

dist: clean
python setup.py sdist
python setup.py bdist_wheel
ls -l dist

tag:
Expand All @@ -51,4 +50,4 @@ release-check:
python setup.py release_check

release:
rm -rf dist/ build/ && python setup.py sdist bdist_wheel && twine upload dist/*
rm -rf dist/ build/ && python setup.py sdist && twine upload dist/*
2 changes: 1 addition & 1 deletion mutmut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Number,
)

__version__ = '3.0.3'
__version__ = '3.0.4'


# We have a global whitelist for constants of the pattern __all__, __version__, etc
Expand Down
13 changes: 0 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,6 @@ def run(self):

print("Ok to distribute files")


test_reqs = read_reqs('test_requirements.txt')
extras_reqs = {
'pytest': [
item for item in test_reqs if item.startswith('pytest')],
'coverage': [
item for item in test_reqs if item.startswith('coverage')],
'patch': [
item for item in test_reqs if item.startswith('whatthepatch')],
}

running_inside_tests = any('pytest' in x[1] or 'hammett' in x[1] for x in inspect.stack())

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

0 comments on commit 9ad699f

Please sign in to comment.