Skip to content

Commit

Permalink
Bump for ASE 3.23.0 (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed May 31, 2024
1 parent 47074e8 commit 4b6cfb9
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install pip packages
run: |
pip install uv
uv pip install --system "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip" "quacc[docs] @ ."
uv pip install --system "quacc[docs] @ ."
- name: Build docs
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install build
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install .
- name: Build sdist
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Changed

- No longer need to install `master` branch of ASE
- Modified Espresso and ONETEP settings to support new ASE profile features
- Removed `nsteps` from the `OptSchema`


## [0.9.0]

### Added
Expand Down
6 changes: 0 additions & 6 deletions docs/install/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,13 @@ In your newly activated conda environment, run the following commands to install
For the latest PyPI release:

```bash
# Install development version of ASE
pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip"

# Install quacc
pip install quacc
```

For the development version:

```bash
# Install development version of ASE
pip install --force-reinstall --no-deps "ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip"

# Install development version of quacc
pip install git+https://github.com/quantum-accelerators/quacc.git
```
5 changes: 0 additions & 5 deletions docs/user/wflow_engine/executors.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ If you haven't done so already:
On both the local and remote machines:

```bash
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install quacc[covalent]
quacc set WORKFLOW_ENGINE covalent && quacc set CREATE_UNIQUE_DIR false # (1)!
```
Expand All @@ -118,7 +117,6 @@ If you haven't done so already:
On the remote machine:

```bash
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install quacc[dask]
quacc set WORKFLOW_ENGINE dask
```
Expand All @@ -132,7 +130,6 @@ If you haven't done so already:
On the remote machine:

```bash
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install quacc[parsl]
quacc set WORKFLOW_ENGINE parsl
```
Expand All @@ -142,7 +139,6 @@ If you haven't done so already:
On the remote machine:

```bash
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install quacc[prefect]
quacc set WORKFLOW_ENGINE prefect
```
Expand All @@ -162,7 +158,6 @@ If you haven't done so already:
On both the local and remote machines:

```bash
pip install --force-reinstall --no-deps https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
pip install quacc[jobflow]
quacc set WORKFLOW_ENGINE jobflow && quacc set CREATE_UNIQUE_DIR false # (1)!
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"ase>=3.23.0b1", # for Atoms object and calculators
"ase>=3.23.0", # for Atoms object and calculators
"cclib>=1.8", # for I/O parsing of molecular DFT codes
"custodian>=2024.3.12", # for automated error corrections
"emmet-core>=0.80.0", # for pre-made schemas
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ase @ https://gitlab.com/ase/ase/-/archive/master/ase-master.zip
ase==3.23.0
cclib==1.8.1
custodian==2024.4.18
emmet-core==0.83.6
Expand Down

0 comments on commit 4b6cfb9

Please sign in to comment.