Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldoussoren committed Dec 27, 2022
1 parent 5871539 commit 31607a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions doc/changelog.rst
Expand Up @@ -15,6 +15,8 @@ py2app 0.28.5
the dependency graph. This should ensure that new dependencies of
black will be automaticly detected in the future.

* Update wheel dependencies

py2app 0.28.4
-------------

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -284,7 +284,7 @@ def run(self):
setup(
# metadata
name="py2app",
version="0.28.4",
version="0.28.5",
description="Create standalone Mac OS X applications with Python",
# author='Bob Ippolito',
# author_email='bob@redivi.com',
Expand All @@ -300,8 +300,8 @@ def run(self):
long_description_content_type="text/x-rst; charset=UTF-8",
classifiers=CLASSIFIERS,
keywords=[".app", "standalone"],
install_requires=["altgraph>=0.16", "modulegraph>=0.19.3", "macholib>=1.16"],
setup_requires=["altgraph>=0.16", "modulegraph>=0.19.3", "macholib>=1.16"],
install_requires=["altgraph>=0.17.3", "modulegraph>=0.19.3", "macholib>=1.16.2"],
setup_requires=["altgraph>=0.17.3", "modulegraph>=0.19.3", "macholib>=1.16.2"],
tests_require=["pyobjc"],
cmdclass=cmdclass,
packages=find_packages(exclude=["py2app_tests"]),
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = isort,black,py37,py38,py39,py310,flake8
envlist = isort,black,py39,py310,flake8
#envlist = py37,flake8,coverage-report

[testenv]
Expand Down

0 comments on commit 31607a6

Please sign in to comment.