libcasm-mapping 2.0a3__tar.gz → 2.0a4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CHANGELOG.md +19 -0
  2. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/PKG-INFO +3 -3
  3. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/build_requirements.txt +2 -2
  4. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/MappingSearch.hh +3 -1
  5. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/pyproject.toml +9 -9
  6. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/conf.py +1 -3
  7. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/PKG-INFO +3 -3
  8. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/SOURCES.txt +1 -0
  9. libcasm_mapping-2.0a4/python/libcasm_mapping.egg-info/requires.txt +3 -0
  10. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/pyproject.toml +2 -2
  11. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/setup.py +1 -3
  12. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_mapsearch.cpp +426 -140
  13. libcasm_mapping-2.0a4/python/tests/test_MappingSearch.py +186 -0
  14. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/setup.py +1 -1
  15. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/MappingSearch.cc +46 -11
  16. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/SearchData.cc +7 -1
  17. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/atom_cost.cc +0 -1
  18. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/murty.cc +1 -1
  19. libcasm-mapping-2.0a3/python/libcasm_mapping.egg-info/requires.txt +0 -3
  20. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CMakeLists.txt +0 -0
  21. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CMakeLists.txt.in +0 -0
  22. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/LICENSE +0 -0
  23. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/MANIFEST.in +0 -0
  24. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/README.md +0 -0
  25. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/cmake/CASMcode_mappingConfig.cmake.in +0 -0
  26. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/dev_requirements.txt +0 -0
  27. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc/customdoxygen.css +0 -0
  28. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc/doxygen_config +0 -0
  29. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc_requirements.txt +0 -0
  30. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/AtomMapping.hh +0 -0
  31. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/LatticeMapping.hh +0 -0
  32. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/SearchData.hh +0 -0
  33. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/StructureMapping.hh +0 -0
  34. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/atom_cost.hh +0 -0
  35. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/hungarian.hh +0 -0
  36. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/LatticeMap.hh +0 -0
  37. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/SimpleStrucMapCalculator.hh +0 -0
  38. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/StrucMapCalculatorInterface.hh +0 -0
  39. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/StrucMapping.hh +0 -0
  40. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/io/json/StrucMapping_json_io.hh +0 -0
  41. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/io/json_io.hh +0 -0
  42. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/lattice_cost.hh +0 -0
  43. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_atoms.hh +0 -0
  44. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_lattices.hh +0 -0
  45. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_structures.hh +0 -0
  46. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/misc.hh +0 -0
  47. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/murty.hh +0 -0
  48. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/version.hh +0 -0
  49. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/make_CMakeLists.py +0 -0
  50. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/pre-commit +0 -0
  51. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/.gitignore +0 -0
  52. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/apple-touch-icon.png +0 -0
  53. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/css/custom.css +0 -0
  54. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/favicon-16x16.png +0 -0
  55. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/favicon-32x32.png +0 -0
  56. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo.pdf +0 -0
  57. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo.svg +0 -0
  58. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_dark.svg +0 -0
  59. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_dark_outline.svg +0 -0
  60. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_outline.svg +0 -0
  61. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo.pdf +0 -0
  62. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo.svg +0 -0
  63. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo_dark.svg +0 -0
  64. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/base.rst +0 -0
  65. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-attr-template.rst +0 -0
  66. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-class-template.rst +0 -0
  67. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-function-template.rst +0 -0
  68. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-module-template.rst +0 -0
  69. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/bibliography.rst +0 -0
  70. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/index.rst +0 -0
  71. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/installation.rst +0 -0
  72. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/reference/libcasm/index.rst +0 -0
  73. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/refs.bib +0 -0
  74. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/usage.rst +0 -0
  75. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_1.py +0 -0
  76. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_2.py +0 -0
  77. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_3.py +0 -0
  78. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_4.py +0 -0
  79. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/__init__.py +0 -0
  80. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/info/__init__.py +0 -0
  81. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/mapsearch/__init__.py +0 -0
  82. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/methods/__init__.py +0 -0
  83. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/dependency_links.txt +0 -0
  84. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/top_level.txt +0 -0
  85. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_info.cpp +0 -0
  86. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_methods.cpp +0 -0
  87. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/conftest.py +0 -0
  88. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_info_io.py +0 -0
  89. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_interpolate_lattices.py +0 -0
  90. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_interpolate_structures.py +0 -0
  91. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_map_lattices.py +0 -0
  92. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_map_structures.py +0 -0
  93. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/setup.cfg +0 -0
  94. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/AtomMapping.cc +0 -0
  95. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/LatticeMapping.cc +0 -0
  96. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/StructureMapping.cc +0 -0
  97. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/hungarian.cc +0 -0
  98. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/LatticeMap.cc +0 -0
  99. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/SimpleStrucMapCalculator.cc +0 -0
  100. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/StrucMapping.cc +0 -0
  101. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/io/json/StrucMapping_json_io.cc +0 -0
  102. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/io/json_io.cc +0 -0
  103. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/lattice_cost.cc +0 -0
  104. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_atoms.cc +0 -0
  105. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_lattices.cc +0 -0
  106. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_structures.cc +0 -0
  107. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/version.cc +0 -0
  108. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/stylize.sh +0 -0
  109. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/test_requirements.txt +0 -0
  110. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/CMakeLists.txt +0 -0
  111. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/CMakeLists.txt.in +0 -0
  112. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/SearchTestData.hh +0 -0
  113. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/autotools.cc +0 -0
  114. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/autotools.hh +0 -0
  115. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/gtest_main_run_all.cpp +0 -0
  116. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/AtomMappingSearchData_test.cpp +0 -0
  117. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/LatticeMap_test.cpp +0 -0
  118. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/LatticeMappingSearchData_test.cpp +0 -0
  119. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/MappingSearch_test.cpp +0 -0
  120. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/PrimSearchData_test.cpp +0 -0
  121. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StrucMapper_test.cpp +0 -0
  122. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StrucMapping_test.cpp +0 -0
  123. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StructureSearchData_test.cpp +0 -0
  124. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/hungarian_test.cpp +0 -0
  125. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/make_trial_translations_test.cpp +0 -0
  126. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/murty_test.cpp +0 -0
  127. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/version_test.cpp +0 -0
  128. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/testdir.cc +0 -0
  129. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/testdir.hh +0 -0
  130. {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/teststructures.hh +0 -0
@@ -5,6 +5,25 @@ All notable changes to `libcasm-mapping` will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v2.0a4] - 2024-07-12
9
+
10
+ ### Added
11
+
12
+ - Added `cost` methods to IsotropicAtomCost, SymmetryBreakingAtomCost, and WeightedTotalCost equivalent to the __call__ operators to improve documentation.
13
+
14
+ ### Changed
15
+
16
+ - Changed default `atom_cost_f` for libcasm.mapping.mapsearch.MappingSearch to IsotropicAtomCost.
17
+ - Changed MappingSearch node insertion so that nodes are only added to the queue if the total cost is less than or equal to the current max_cost instead of always.
18
+ - Wheels compiled with numpy>=2.0.0
19
+
20
+ ### Fixed
21
+
22
+ - Documentation errors
23
+ - Renamed QueueConstraints constructor parameter which was misnamed `min_queue_size` to the correct name `max_queue_size`
24
+ - Fixed MappingSearch node insertion so that solutions are only added to the results if the total cost is less than or equal to the current max_cost even if the current number of results is less than k_best.
25
+
26
+
8
27
  ## [v2.0a3] - 2024-03-14
9
28
 
10
29
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libcasm-mapping
3
- Version: 2.0a3
3
+ Version: 2.0a4
4
4
  Summary: CASM structure mapping
5
5
  Author-email: CASM developers <casm-developers@lists.engr.ucsb.edu>
6
6
  License: LGPL2.1+
@@ -14,8 +14,8 @@ Classifier: Topic :: Scientific/Engineering
14
14
  Requires-Python: >=3.9
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: libcasm-global>=2.0.4
18
- Requires-Dist: libcasm-xtal>=2.0a9
17
+ Requires-Dist: libcasm-global>=2.0.5
18
+ Requires-Dist: libcasm-xtal>=2.0a10
19
19
  Requires-Dist: numpy
20
20
 
21
21
  <img alt="Shows the CASM logo" src="https://raw.githubusercontent.com/prisms-center/CASMcode_global/main/python/doc/_static/logo.svg" width="600" />
@@ -4,5 +4,5 @@ scikit-build
4
4
  cmake>=3.20
5
5
  ninja
6
6
  pybind11>=2.6
7
- libcasm-global>=2.0.4
8
- libcasm-xtal>=2.0a9
7
+ libcasm-global>=2.0.5
8
+ libcasm-xtal>=2.0a10
@@ -269,7 +269,9 @@ inline void MappingSearch::pop_front() { queue.erase(queue.begin()); }
269
269
  /// \brief Erase highest total cost MappingNode in the queue
270
270
  ///
271
271
  /// Invalid if !size()
272
- inline void MappingSearch::pop_back() { queue.erase(queue.rbegin().base()); }
272
+ inline void MappingSearch::pop_back() {
273
+ queue.erase(std::next(queue.rbegin()).base());
274
+ }
273
275
 
274
276
  /// \brief Return the size of the queue
275
277
  inline Index MappingSearch::size() const { return queue.size(); }
@@ -6,14 +6,14 @@ requires = [
6
6
  "cmake>=3.20",
7
7
  "ninja",
8
8
  "pybind11>=2.6",
9
- "libcasm-global>=2.0.4",
10
- "libcasm-xtal>=2.0a9",
9
+ "libcasm-global>=2.0.5",
10
+ "libcasm-xtal>=2.0a10",
11
11
  ]
12
12
  build-backend = "setuptools.build_meta"
13
13
 
14
14
  [project]
15
15
  name = "libcasm-mapping"
16
- version = "2.0a3"
16
+ version = "2.0a4"
17
17
  authors = [
18
18
  { name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" },
19
19
  ]
@@ -29,8 +29,8 @@ classifiers = [
29
29
  "Topic :: Scientific/Engineering",
30
30
  ]
31
31
  dependencies = [
32
- "libcasm-global>=2.0.4",
33
- "libcasm-xtal>=2.0a9",
32
+ "libcasm-global>=2.0.5",
33
+ "libcasm-xtal>=2.0a10",
34
34
  "numpy",
35
35
  ]
36
36
 
@@ -39,13 +39,13 @@ Homepage = "https://prisms-center.github.io/CASMcode_docs/"
39
39
  Repository = "https://github.com/prisms-center/CASMcode_mapping"
40
40
 
41
41
 
42
- [tool.ruff]
43
- select = ["E", "F", "I"]
42
+ [tool.ruff.lint]
43
+ select = ["NPY201", "E", "F", "I"]
44
44
 
45
- [tool.ruff.per-file-ignores]
45
+ [tool.ruff.lint.per-file-ignores]
46
46
  "__init__.py" = ["F401"]
47
47
 
48
- [tool.ruff.isort]
48
+ [tool.ruff.lint.isort]
49
49
  known-first-party = ["libcasm", "casm"]
50
50
 
51
51
 
@@ -3,14 +3,13 @@ import os
3
3
  # -- package specific configuration --
4
4
  project = "libcasm-mapping"
5
5
  version = "2.0" # The short X.Y version.
6
- release = "2.0a3" # The full version, including alpha/beta/rc tags.
6
+ release = "2.0a4" # The full version, including alpha/beta/rc tags.
7
7
  project_desc = "CASM structure mapping"
8
8
  logo_text = "libcasm-mapping"
9
9
  github_url = "https://github.com/prisms-center/CASMcode_mapping/"
10
10
  pypi_url = "https://pypi.org/project/libcasm-mapping/"
11
11
  intersphinx_libcasm_packages = [("global", "2.0"), ("xtal", "2.0")]
12
12
 
13
-
14
13
  # -- CASM common configuration ---
15
14
 
16
15
  # -*- coding: utf-8 -*-
@@ -62,7 +61,6 @@ for package, vers in intersphinx_libcasm_packages:
62
61
 
63
62
  print(intersphinx_mapping)
64
63
 
65
-
66
64
  # Add any Sphinx extension module names here, as strings. They can be
67
65
  # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
68
66
  # ones.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: libcasm-mapping
3
- Version: 2.0a3
3
+ Version: 2.0a4
4
4
  Summary: CASM structure mapping
5
5
  Author-email: CASM developers <casm-developers@lists.engr.ucsb.edu>
6
6
  License: LGPL2.1+
@@ -14,8 +14,8 @@ Classifier: Topic :: Scientific/Engineering
14
14
  Requires-Python: >=3.9
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: libcasm-global>=2.0.4
18
- Requires-Dist: libcasm-xtal>=2.0a9
17
+ Requires-Dist: libcasm-global>=2.0.5
18
+ Requires-Dist: libcasm-xtal>=2.0a10
19
19
  Requires-Dist: numpy
20
20
 
21
21
  <img alt="Shows the CASM logo" src="https://raw.githubusercontent.com/prisms-center/CASMcode_global/main/python/doc/_static/logo.svg" width="600" />
@@ -80,6 +80,7 @@ python/src/mapping_info.cpp
80
80
  python/src/mapping_mapsearch.cpp
81
81
  python/src/mapping_methods.cpp
82
82
  python/tests/conftest.py
83
+ python/tests/test_MappingSearch.py
83
84
  python/tests/test_info_io.py
84
85
  python/tests/test_interpolate_lattices.py
85
86
  python/tests/test_interpolate_structures.py
@@ -0,0 +1,3 @@
1
+ libcasm-global>=2.0.5
2
+ libcasm-xtal>=2.0a10
3
+ numpy
@@ -4,7 +4,7 @@ requires = [
4
4
  "setuptools",
5
5
  "wheel",
6
6
  "pybind11>=2.8.0",
7
- "libcasm-global>=2.0.4",
8
- "libcasm-xtal>=2.0a9",
7
+ "libcasm-global>=2.0.5",
8
+ "libcasm-xtal>=2.0a10",
9
9
  ]
10
10
  build-backend = "setuptools.build_meta"
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- __version__ = "2.0a3"
3
+ __version__ = "2.0a4"
4
4
 
5
5
  # Available at setup time due to pyproject.toml
6
6
  from pybind11.setup_helpers import Pybind11Extension, build_ext
@@ -37,7 +37,6 @@ extra_link_args = [
37
37
  "-lcasm_mapping",
38
38
  ]
39
39
 
40
-
41
40
  # The main interface is through Pybind11Extension.
42
41
  # * You can add cxx_std=11/14/17, and then build_ext can be removed.
43
42
  # * You can set include_pybind11=false to add the include directory yourself,
@@ -82,7 +81,6 @@ ext_modules = [
82
81
  ),
83
82
  ]
84
83
 
85
-
86
84
  setup(
87
85
  name="libcasm-mapping",
88
86
  version=__version__,