Skip to content

Commit

Permalink
remove meson.build for python projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Mar 12, 2024
1 parent 227bbf9 commit 4b66408
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions babelizer/data/hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ def write_api_yaml(folderpath, **kwds):
if "Not open source" == "{{ cookiecutter.open_source_license }}":
remove_file("LICENSE")

{%- if cookiecutter.language == 'python' %}
remove_file("meson.build")
{%- endif %}

datadir = Path("meta")
package_datadir = Path("{{ cookiecutter.package_name }}") / "data"
if not package_datadir.exists():
Expand Down
1 change: 0 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def test_langs(session: nox.session, lang) -> None:
session.debug(f"{k}: {v!r}")

with session.chdir(package):
session.run("pkg-config", "--list-all")
session.run("python", "-m", "pip", "install", ".[dev]")

with session.chdir(testdir):
Expand Down

0 comments on commit 4b66408

Please sign in to comment.