summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@apache.org>2021-06-05 13:46:29 -0400
committerNick Vatamaniuc <nickva@users.noreply.github.com>2021-06-05 16:15:45 -0400
commit03ae4380854a13bba5f25c8e9502a21f3dfd77c7 (patch)
tree124a579ca2c2a5d2ce84b09228cc81c2a22c4837
parente580d71a7dd59525d983c8b8d37333529a39de67 (diff)
downloadcouchdb-03ae4380854a13bba5f25c8e9502a21f3dfd77c7.tar.gz
Erlang 19 is not supported for 3.x
It doesn't really work as we have functionality relying on 20.0+ features. One particular instance is in [1]. Issue: https://github.com/apache/couchdb/issues/3571 [1] https://github.com/apache/couchdb/blob/ce596c65d9d7f0bc5d9937bcaf6253b343015690/src/couch/src/couch_emsort.erl#L363-L366
-rw-r--r--rebar.config.script2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebar.config.script b/rebar.config.script
index 54c7df4d2..17785ef40 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -196,7 +196,7 @@ ErlOpts = case os:getenv("ERL_OPTS") of
end.
AddConfig = [
- {require_otp_vsn, "19|20|21|22|23|24"},
+ {require_otp_vsn, "20|21|22|23|24"},
{deps_dir, "src"},
{deps, lists:map(MakeDep, DepDescs ++ OptionalDeps)},
{sub_dirs, SubDirs},