Skip to content

Commit

Permalink
Merge branch 'master' into docs/extend-viwers-documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yakutovicha authored Nov 3, 2023
2 parents fb7f17d + 91468ba commit f78d212
Show file tree
Hide file tree
Showing 23 changed files with 1,908 additions and 645 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
**/pyproject.toml
**/requirements*.txt
- uses: pre-commit/action@v2.0.0
- uses: pre-commit/action@v3.0.0

test-notebooks:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,6 @@ venv.bak/

.DS_Store
.vscode

# screenshots from tests
screenshots/
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ repos:
- id: yamlfmt

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.9.1
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+

- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
args: [--count, --show-source, --statistics]
Expand All @@ -35,7 +35,7 @@ repos:
- flake8-debugger==4.1.2
- flake8-logging-format==0.9.0
- pep8-naming==0.13.3
- pyflakes==3.0.1
- pyflakes==3.1.0
- tryceratops==1.1.0

- repo: https://github.com/pycqa/isort
Expand All @@ -45,12 +45,12 @@ repos:
args: [--profile, black, --filter-files]

- repo: https://github.com/sirosen/check-jsonschema
rev: 0.23.2
rev: 0.27.0
hooks:
- id: check-github-workflows

- repo: https://github.com/asottile/pyupgrade
rev: v3.8.0
rev: v3.13.0
hooks:
- id: pyupgrade
args: [--py37-plus]
Expand Down
2 changes: 1 addition & 1 deletion aiidalab_widgets_base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ def is_running_in_jupyter():
"viewer",
]

__version__ = "2.0.1"
__version__ = "2.1.0a0"
Loading

0 comments on commit f78d212

Please sign in to comment.