Skip to content

Commit 5f73a8d

Browse files
authored
Merge branch 'main' into dependabot/github_actions/dot-github/workflows/github_actions-876e8310b8
2 parents 86e4be7 + a608262 commit 5f73a8d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/upgrade-dependencies.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ name: upgrade dependencies
33

44
on:
55
workflow_dispatch: # Allow running on-demand
6-
schedule:
7-
# Runs every Monday at 8:00 UTC (4:00 Eastern)
8-
- cron: "0 8 * * 1"
96

107
jobs:
118
upgrade:
@@ -71,6 +68,8 @@ jobs:
7168
git checkout -b auto-dependency-upgrades
7269
git branch -r | grep auto-dependency-upgrades- | xargs -I {} git merge {}
7370
git rebase ${GITHUB_REF##*/}
71+
git reset $(git merge-base ${GITHUB_REF##*/} HEAD)
72+
git commit -a -m "auto dependency upgrades"
7473
git push -f origin auto-dependency-upgrades
7574
git branch -r | grep auto-dependency-upgrades- | cut -d/ -f2 | xargs -I {} git push origin :{}
7675
- name: Open pull request if needed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ requires-python = ">=3.9"
1111
authors = [{ name = "Matt Horton", email = "[email protected]" }]
1212

1313
dependencies = [
14-
"crystaltoolkit-extension",
1514
"dash-mp-components>=0.4.38",
1615
"dash>=2.11.0",
1716
"flask-caching",
@@ -44,6 +43,7 @@ dev = [
4443
"sphinx_rtd_theme",
4544
]
4645
test = ["playwright", "pytest", "pytest-playwright", "pytest-cov"]
46+
jupyterlab_deprecated = ["crystaltoolkit-extension"]
4747

4848
[project.urls]
4949
repo = "https://github.com/materialsproject/crystaltoolkit"

0 commit comments

Comments
 (0)