Skip to content

Commit

Permalink
Merge branch '2.X_enumerate_superlattices_shape' into 2.09
Browse files Browse the repository at this point in the history
  • Loading branch information
bpuchala committed Jan 26, 2024
2 parents 5982a81 + 4675ab9 commit 279e1b1
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/cache/restore@v4
with:
path: CASMcode_global/dist
key: ${{ runner.os }}-libcasm-global-v2-0-3
key: ${{ runner.os }}-libcasm-global-v2-0-4

- name: Install CASM dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-cxx-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/cache/restore@v4
with:
path: CASMcode_global/dist
key: ${{ runner.os }}-libcasm-global-v2-0-3
key: ${{ runner.os }}-libcasm-global-v2-0-4

- name: Install CASM dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/cache/restore@v4
with:
path: CASMcode_global/dist
key: ${{ runner.os }}-libcasm-global-v2-0-3
key: ${{ runner.os }}-libcasm-global-v2-0-4

- name: checkout libcasm-global
if: steps.cache-libcasm-global-restore.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/cache/restore@v4
with:
path: CASMcode_global/dist
key: ${{ runner.os }}-libcasm-global-v2-0-3
key: ${{ runner.os }}-libcasm-global-v2-0-4

- name: Install CASM dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion build_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ scikit-build
cmake>=3.20
ninja
pybind11>=2.6
libcasm-global>=2.0.2
libcasm-global>=2.0.4
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires = [
"cmake>=3.20",
"ninja",
"pybind11>=2.6",
"libcasm-global>=2.0.2",
"libcasm-global>=2.0.4",
]
build-backend = "setuptools.build_meta"

Expand All @@ -28,7 +28,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
dependencies = [
"libcasm-global>=2.0.2",
"libcasm-global>=2.0.4",
"numpy",
]

Expand Down Expand Up @@ -57,7 +57,7 @@ build = "cp39-* cp310-* cp311-*"
skip = "pp*"

# Need libcasm-global at wheel repair stage
before-build = "pip install libcasm-global>=2.0.2"
before-build = "pip install libcasm-global>=2.0.4"

# Testing
test-requires = "pytest pytest-datadir"
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ requires = [
"setuptools",
"wheel",
"pybind11>=2.8.0",
"libcasm-global>=2.0.2",
"libcasm-global>=2.0.4",
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
name="libcasm-xtal",
version=__version__,
packages=["libcasm", "libcasm.xtal"],
install_requires=["pybind11", "libcasm-global>=2.0.2"],
install_requires=["pybind11", "libcasm-global>=2.0.4"],
ext_modules=ext_modules,
cmdclass={"build_ext": build_ext},
)

0 comments on commit 279e1b1

Please sign in to comment.