Skip to content

Commit

Permalink
re-re-remove overly restrictive minimum version of meson (doctest#635)
Browse files Browse the repository at this point in the history
Despite being removed a couple of times in commits
6adc79f and
2083101 this kept on getting re-added
by the automatic update script. Remove it more thoroughly this time.
  • Loading branch information
eli-schwartz authored Apr 20, 2022
1 parent ce13bc4 commit 0b79b49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('doctest', ['cpp'], version: '2.4.8', meson_version:'>=0.50')
project('doctest', ['cpp'], version: '2.4.8')

doctest_dep = declare_dependency(include_directories: include_directories('doctest'))

Expand Down
2 changes: 1 addition & 1 deletion scripts/update_stuff.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def getVersionTuple(v):
meson_contents = ""
for line in fileinput.input(["../meson.build"]):
if line.startswith("project('doctest'"):
meson_contents += "project('doctest', ['cpp'], version: '" + version + "', meson_version:'>=0.50')\n"
meson_contents += "project('doctest', ['cpp'], version: '" + version + "')\n"
else:
meson_contents += line

Expand Down

0 comments on commit 0b79b49

Please sign in to comment.