Skip to content

Commit

Permalink
drop 3.1.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
star-hengxing committed Sep 17, 2024
1 parent b974603 commit c0af024
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/d/dataframe/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ package("dataframe")
"https://github.com/hosseinmoein/DataFrame.git")

add_versions("3.2.0", "44c513ef7956976738c2ca37384a220c5383e95fc363ad933541c6f3eef9d294")
add_versions("3.1.0", "09280a81f17d87d171062210c904c1acd94b1cdcf4c040eaa16cc9d224d526d4")
add_versions("3.0.0", "9266fb85c518a251a5440e490c81615601791f2de2fad8755aa09f13a0c541f9")
add_versions("2.3.0", "d671a3d47c2ef250cadddbae545b1b7bee51f9411836b627b7860e187c868a72")
add_versions("1.22.0", "4b244241cd56893fccb22f7c874588f0d86b444912382ed6e9a4cf95e55ffda2")
Expand All @@ -31,10 +30,12 @@ package("dataframe")
end
assert(package:check_cxxsnippets({test = [[
#include <algorithm>
#include <ranges>
#include <vector>
void test() {
std::vector v{0, 1, 2, 3, 4, 5};
std::ranges::fill(v, 10);
std::vector<int> x, y;
std::ranges::fill(x, 10);
for (auto&& [a, b] : std::views::zip(x, y)) {}
}
]]}, {configs = {languages = "c++23"}}), "package(dataframe) require c++23")
end)
Expand Down

0 comments on commit c0af024

Please sign in to comment.