Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FHI-aims DFT calculator #562

Merged
merged 127 commits into from
Feb 29, 2024
Merged

Commits on Oct 11, 2023

  1. Move files from: https://github.com/tpurcell90/atomate2-fhi-aims

    This was originally started as a project to incorporate fhi-aims into
    jobflow as a part of the NOMAD-CoE, working with @davidwaroquiers and
    @ansobolev. Originally we did not know if this could be incorporated into
    atomate2, which is why we had a seperate repository, but the structure and
    administrative approval were recently granted.
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    66d4664 View commit details
    Browse the repository at this point in the history
  2. Fix errors in the tests from the migration

    Minor things came up from the migration:
    1) Remove all atomate2_temp from out.json files
    2) Compare files function now in tests.aims not tests
    3) Make all socket tests skippable because they require
       an aims binary to run
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    6d82a87 View commit details
    Browse the repository at this point in the history
  3. Ran isort on all of the source files

    imports should now be fixed
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    ace8c4f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    69a534b View commit details
    Browse the repository at this point in the history
  5. Fix all linter errors

    Fix all of the linter errors I missed using flake8 over
    ruff and mpypy
    
    Also fixed spelling errors
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    5af4c85 View commit details
    Browse the repository at this point in the history
  6. Replaced typing X | Y with Union[X, Y]

    Fixes python3.9 typing error as X | Y is for python3.10
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    7f49c8e View commit details
    Browse the repository at this point in the history
  7. Update src/atomate2/common/jobs/phonons.py

    Co-authored-by: J. George <JaGeo@users.noreply.github.com>
    tpurcell90 and JaGeo authored Oct 11, 2023
    Configuration menu
    Copy the full SHA
    8f1186e View commit details
    Browse the repository at this point in the history
  8. Make requested change from @JaGeo

    Left to do:
    1) ForceField phonon flow
    2) overall documentation checks
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    e877b0e View commit details
    Browse the repository at this point in the history
  9. Modify forcefields phonon workflow to be the same as Aims and VASP

    Use the common one as the Base
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    1e0dfc2 View commit details
    Browse the repository at this point in the history
  10. Update documentation of phonon workflows

    Everything should be up to date now
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    5f8190c View commit details
    Browse the repository at this point in the history
  11. Restore changes from main in the phonon flow files

    Checked the diff between this an main and they should now be consistent
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    c2cddcd View commit details
    Browse the repository at this point in the history
  12. Make sure that phonon schema changes are incorporated

    1) Missed one Optional typing
    2) I set the factor for forcefields to the same as VASP as that was
    the code that was passed to the schema earlier
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    59830d8 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d63a2e0 View commit details
    Browse the repository at this point in the history
  14. Add ASE requirement

    Uses the latest gitlab version as we wait for the new release
    tpurcell90 committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    0d8b18d View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. Fix FHI-aims errors

    1) conftest for aims checks if addoption is possible, and if not then always mocks aims
    2) parsers constraint tests were incorrectly modified during fixing linting errors
    3) prev_dir host split is now working correctly in convergence tests
    4) Correct pydantic errors in AimsOutput
    5) Aims files error fix
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    c7330b1 View commit details
    Browse the repository at this point in the history
  2. Correct prev_dir issue

    Following @utf's suggestion to match the magnetisim workflow
    This works for aims, but VASP and forcefields I have enviornment errors
    pushing to test
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    1d0ef20 View commit details
    Browse the repository at this point in the history
  3. Fix pymatgen structure issue after bulk job in phonon workflow

    The output should only be converted if it is a MSONableAtoms object
    not a Structure object
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    c5ef206 View commit details
    Browse the repository at this point in the history
  4. Make ASE an optional dependecy under aims

    Will convert to ASE 3.23 when it finally is made
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    b9b5722 View commit details
    Browse the repository at this point in the history
  5. Phonon Diff clean up

    1) Reset prev_dir to bulk.output.dirname
    2) Remove comment in get_factor
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    8b16cc6 View commit details
    Browse the repository at this point in the history
  6. Final documentation formatting checks

    @ansobolev Can you also check to make sure you agree
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    841aec3 View commit details
    Browse the repository at this point in the history
  7. Add ase to strict

    So it installs for the tests
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    6a30b1f View commit details
    Browse the repository at this point in the history
  8. Minor Bug Fixes

    1) Phonon flow after bulk only convert structure if code==aims
    2) forcefields code is now forcefields
    3) remove print lines
    tpurcell90 committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    29739f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2023

  1. Make requested changes from @ansovolev

    Minor documentation and typing changes
    tpurcell90 committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    c175a8c View commit details
    Browse the repository at this point in the history
  2. Change parser to convert stresses to kbar

    Be consistent with other codes
    tpurcell90 committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    0090f39 View commit details
    Browse the repository at this point in the history
  3. Remove tests that only test ASE

    An extranous test was copied over
    tpurcell90 committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    6e221c0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    498327f View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Standardize aims schema with respect to structure

    1) previous structure -> atoms: .MSONableAtoms
    2) structure: Molecule | Structure
    
    Make it consistent with all codes that .structure implies pymatgen structures
    tpurcell90 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    de4171f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    159f013 View commit details
    Browse the repository at this point in the history
  3. Check the pydantic errors on the workflows

    Locally everything passes, not sure what the error is about
    tpurcell90 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    628ab6b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f4a51d2 View commit details
    Browse the repository at this point in the history
  5. Fix Pydantic2 and Phonon Schema errors from updated main

    1) Add Optional tag for Optional fields
    2) Correct schema json in aims phonon tests
    tpurcell90 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    e1810b5 View commit details
    Browse the repository at this point in the history
  6. Correct phonon schema for the skipped tests

    Skipped during execution in tests, but they should still be consistent
    tpurcell90 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    24598a3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f8b9425 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    020ed88 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Adjust Schema names to match the updated nomenclature

    Saw this in the change log for v0.0.11 and made the modifications
    to the aims interface
    tpurcell90 committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    48cfa36 View commit details
    Browse the repository at this point in the history
  2. Use ASE 3.22.1 not ASE 3.23

    This way dependency bot can be used
    tpurcell90 committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    4bb1206 View commit details
    Browse the repository at this point in the history
  3. Clean up FHI-aims job to job management

    1) Don't copy output files by default from prev_dir
    2) Don't read in properties by default from prev_dir
    tpurcell90 committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    e9ac531 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Configuration menu
    Copy the full SHA
    0e62c4d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from tpurcell90/restart-maker

    remove copying all outputs by default
    tpurcell90 authored Oct 18, 2023
    Configuration menu
    Copy the full SHA
    ea9f1d4 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. Move test_data for aims from aims/test_data to test_data/aims

    Standardize with the other tests
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    9000c32 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3e114bd View commit details
    Browse the repository at this point in the history
  3. Compress all test_data files

    1) Use gzip on all test_data files
    2) Adjust test readers to work on teh compressed files
    3) Adujust parsers to read gz output files
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    915ede8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    346cf78 View commit details
    Browse the repository at this point in the history
  5. Fix linter errors

    Not sure where these came from
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    2b855c9 View commit details
    Browse the repository at this point in the history
  6. write_aim_input_set structure->atoms name convention

    I missed one inconsistent call in my previous search
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    26ad822 View commit details
    Browse the repository at this point in the history
  7. remove debug print lines

    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    8bb8c6b View commit details
    Browse the repository at this point in the history
  8. Create AIMS_CMD setting

    Remove ASE default environment variable
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    997a576 View commit details
    Browse the repository at this point in the history
  9. Fix the reading of previous images in the socket calculator

    Don't copy files just read existing ones
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    6696071 View commit details
    Browse the repository at this point in the history
  10. Automatically gzip output files when jobs end

    The fixes for the test-gzipped files now means this is no longer
    problematic
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    5e30355 View commit details
    Browse the repository at this point in the history
  11. Addressing comments by @utf

    ansobolev committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    f038749 View commit details
    Browse the repository at this point in the history
  12. Revert change in files.py

    MSONableAtoms objects should be called atoms not structure
    tpurcell90 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    c9ca05f View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. Configuration menu
    Copy the full SHA
    434a15f View commit details
    Browse the repository at this point in the history
  2. Correct issues that came from resolving merge conflicts

    1) The vasp.flows.phonons and forcefields.flows.phonons make funtion not needed
    2) Correct typing/annotations linting issues
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    edb4e82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f291c81 View commit details
    Browse the repository at this point in the history
  4. Fix typing and annotations lint errors

    Soemthing in the merge switched the needed behavior
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    717cc22 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fd5f423 View commit details
    Browse the repository at this point in the history
  6. Merge remote-tracking branch 'origin/atomate2-aims' into atomate2-aims

    # Conflicts:
    #	src/atomate2/aims/flows/gw.py
    ansobolev committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    05aad05 View commit details
    Browse the repository at this point in the history
  7. Add Flow type hint to common workflow make

    Be consistent with the new main branch changes
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    498ab75 View commit details
    Browse the repository at this point in the history
  8. Modify species_dir paths

    1) Make the `light` files copies not links
    2) All `species_dir` that with not sub path are now looking for light
    3 Removes all species files not in `light` or `tight`
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    3dcd2a9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fc424f3 View commit details
    Browse the repository at this point in the history
  10. Refactor the ConvergenceMaker to be a flow maker

    1) Create `aims.jobs.convergence` and `aims.flows.convergence`
    2) Move `convergence_iteration` and `update_convergence_file` to `aims.jobs.convergence`
    3) Move `ConvergenceMaker` to `aims.flows.convergence`
    4) Allow `ConvergenceMaker` to accept pytmatgen input structures
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    de22985 View commit details
    Browse the repository at this point in the history
  11. Remove convergence_iteration

    ConvergenceMaker now does this in the `make` function
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    6a35895 View commit details
    Browse the repository at this point in the history
  12. Move ConvergenceMaker to aims.jobs.convergence

    This is no longer a flow, so it should be in jobs
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    526ea49 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a094278 View commit details
    Browse the repository at this point in the history
  14. Merge remote-tracking branch 'origin/atomate2-aims' into atomate2-aims

    # Conflicts:
    #	src/atomate2/aims/flows/convergence.py
    ansobolev committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    78427b2 View commit details
    Browse the repository at this point in the history
  15. Remove convergenceMaker.last_idx and detour from ConvergenceMaker

    Changes as requesteed
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    780f6c6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    01984d8 View commit details
    Browse the repository at this point in the history
  17. Update run aims docstrings

    Remove use of ASE_AIMS_COMMAND in the doc strings
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    5618dff View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    5ce12ee View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    2f51cb5 View commit details
    Browse the repository at this point in the history
  20. Update src/atomate2/forcefields/flows/phonons.py

    Add requested volume relaxation
    
    Co-authored-by: J. George <JaGeo@users.noreply.github.com>
    tpurcell90 and JaGeo authored Oct 20, 2023
    Configuration menu
    Copy the full SHA
    a2ee7dd View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    43b5160 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    1abef6e View commit details
    Browse the repository at this point in the history
  23. Fix a typo in the docs

    ansobolev committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    7fa04de View commit details
    Browse the repository at this point in the history
  24. Move get_factor to common.schemas.phonons

    Remove the circular depedency
    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    dd9b53c View commit details
    Browse the repository at this point in the history
  25. Typo fix

    tpurcell90 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    ef0f4ee View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Configuration menu
    Copy the full SHA
    7e0fded View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Add compare_files to the input set generator tests

    pulling from tests.aims no longer works I'll try to come up with a
    better solution
    tpurcell90 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    7de6ad6 View commit details
    Browse the repository at this point in the history
  2. prev_vasp_dir -> prev_dir

    I just noticed the chaing in directory names
    tpurcell90 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    2169e47 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    bf1463e View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Remove MSONaableAtoms from src

    Still in tests will remove that next
    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    6dad72b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2407a26 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    88d8761 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c7d9e11 View commit details
    Browse the repository at this point in the history
  5. Removing MSONableAtoms from tests

    Still need to check if they pass
    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    30e4db4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6eb27d1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4907413 View commit details
    Browse the repository at this point in the history
  8. Update refrence files

    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3df0f5f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9b77329 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    5469312 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    25bc647 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7aa8b9b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5682a6a View commit details
    Browse the repository at this point in the history
  14. Bug Fix

    Use the updated parameters not original one when building the input
    sets
    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    cbd4015 View commit details
    Browse the repository at this point in the history
  15. Correct socket calculations

    Fix the updated socket runner
    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    78dc195 View commit details
    Browse the repository at this point in the history
  16. Remove unused modules

    tpurcell90 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    4e054f3 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Configuration menu
    Copy the full SHA
    5ddd690 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. update pymatgen version

    tpurcell90 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    c71f1c0 View commit details
    Browse the repository at this point in the history
  2. Be more prcsie with output band checks

    In some versions it prints -0.0000 instead of 0.0000
    tpurcell90 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    1a27c19 View commit details
    Browse the repository at this point in the history
  3. Remove io tests

    no longer used
    tpurcell90 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    3ebea3f View commit details
    Browse the repository at this point in the history
  4. Some cleaning up

    ansobolev committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    ec157db View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Fix issues with calculation schemas

    1) stress input can be voigt or 3x3 -> 3x3
    2) Remove extraneous CalculationInput object
    tpurcell90 committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    13186a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    69148b0 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Update pyproject.toml

    Co-authored-by: Alex Ganose <utf@users.noreply.github.com>
    tpurcell90 and utf authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    0745866 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Convergence maker rewritten

    ansobolev committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    57fc052 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Remove sets from atomate2.aims

    As requested by utf
    tpurcell90 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    77c2c5f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd664ce View commit details
    Browse the repository at this point in the history
  3. remove img_format from PhononBSPlotter call

    This is no longer used in pymatgen
    tpurcell90 committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    afa6984 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    30089bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8fbc023 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. fix lint errors

    tpurcell90 committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    5adabde View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Configuration menu
    Copy the full SHA
    089a799 View commit details
    Browse the repository at this point in the history
  2. Remove old test files

    tpurcell90 committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    8f9bd78 View commit details
    Browse the repository at this point in the history
  3. Fix pre-commit hooks

    new comp forgot to install
    tpurcell90 committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    6fb5f8b View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Update pymatgen version

    tpurcell90 committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    fa7315e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    174d874 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2024

  1. Configuration menu
    Copy the full SHA
    24ca9e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ee0172 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f58c34c View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    e782ad9 View commit details
    Browse the repository at this point in the history
  2. Fix merge conflicts

    tpurcell90 committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    7c2a781 View commit details
    Browse the repository at this point in the history
  3. 1) Update pyproject to use monty==2024.2.2

    2) Make a hacky fix for phonon workflow that should not be kept
       This will only be used for discussion with @JaGeoX
    tpurcell90 committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    317549b View commit details
    Browse the repository at this point in the history
  4. pre-commit got removed by accident

    fix lint errors
    tpurcell90 committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    639e1c8 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Configuration menu
    Copy the full SHA
    52b98a7 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Configuration menu
    Copy the full SHA
    07d654a View commit details
    Browse the repository at this point in the history
  2. Fix Lint errors

    Forgot to check when resolving conflicts online
    tpurcell90 committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    c2ac17a View commit details
    Browse the repository at this point in the history
  3. revert pyproject changes

    should fix remaining conflicts
    tpurcell90 committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    b3e7029 View commit details
    Browse the repository at this point in the history