Skip to content

Commit

Permalink
Minor tweaks for testing
Browse files Browse the repository at this point in the history
The comments in pyproject.toml are the most interesting bit,
the actual change is technically incorrect but helps in local
testing.
  • Loading branch information
ronaldoussoren committed Jul 7, 2024
1 parent fa5ad2b commit 9aa0f4e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ doc/_build
workenv
build
dist
dist2
py2app.egg-info
.DS_Store
__pycache__
.tox
.coverage
htmlcov
TODO.txt

syntax: glob
*.dSYM
*.pyc
*.pyo
*.so
*.sv
*.swp
.coverage*
launcher-*-*
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,13 @@ xcmappingmodel = "py2app.converters.coredata:convert_mappingmodel"

[tool.flit.sdist]
exclude = [".github"]

# This includes prebuild stub executables, even though those are
# depedant on the python version.
# XXX: Move back to setuptools to better control wheel creation
# - do not include launcher stubs in sdist
# - generate the launcher stubs when building a wheel
# - wheel is python-version specific (due to launcher binaries)
# XXX: All of these should be automated to enable using trusted
# publishers on PyPI for releases.
include = ["src/py2app/_apptemplate/launcher-*"]

0 comments on commit 9aa0f4e

Please sign in to comment.