Skip to content

Commit ce987c7

Browse files
committed
Finish setting version to 3.0a1
1 parent ae82930 commit ce987c7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [
44
"setuptools",
55
"wheel",
66
"pybind11~=3.0",
7-
"libcasm-global>=2.0.6",
8-
"libcasm-xtal>=2.0.0,<3.0.0",
7+
"libcasm-global>=2.3.0",
8+
"libcasm-xtal>=3.0a1,<4",
99
]
1010
build-backend = "setuptools.build_meta"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "2.4.1"
3+
__version__ = "3.0a1"
44

55
# Available at setup time due to pyproject.toml
66
from pybind11.setup_helpers import Pybind11Extension, build_ext

tests/unit/mapping/version_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ TEST(VersionTest, TestGlobalVersion) {
2424
std::vector<int> version_vec{std::stoi(v_match[1].str()),
2525
std::stoi(v_match[2].str()),
2626
std::stoi(v_match[3].str())};
27-
std::vector<int> min_version{2, 2, 0};
27+
std::vector<int> min_version{2, 3, 0};
2828
EXPECT_TRUE(version_vec >= min_version)
2929
<< "version: " << version_vec << " min_version: " << min_version
3030
<< std::endl;

0 commit comments

Comments
 (0)