Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/documentation-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4

- name: Build documentation
run: pixi run --environment dev docs-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v5

- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4

- name: Update lock file
run: pixi run update-lock
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4
- name: Run linting
run: pixi run lint
run: pixi run -e dev lint-check

- name: Suggestion to fix lint issues
if: ${{ failure() }}
run: |
echo "::notice::In project root run 'pixi run lint-fix' and commit changes to fix issues."
echo "::notice::In project root run 'pixi run -e dev lint' and commit changes to fix issues."
exit 1

- name: Run formatting
run: pixi run format-check
run: pixi run -e dev format-check

- name: Suggestion to fix format issues
if: ${{ failure() }}
run: |
echo "::notice::In project root run 'pixi run format' and commit changes to fix issues."
echo "::notice::In project root run 'pixi run -e dev format' and commit changes to fix issues."
exit 1

Code_Testing:
Expand Down Expand Up @@ -85,10 +85,10 @@ jobs:
- uses: actions/checkout@v5

- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4

- name: Build package
run: pixi run build

- name: Run tox tests
run: pixi run tox
run: pixi run -e dev tox
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5

- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4

- name: Set Python version
run: pixi add python=${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v5

- name: Setup Pixi
uses: easyscience/actions/pixi@master
uses: prefix-dev/setup-pixi@v0.9.4

- name: Build package
run: pixi run build
Expand Down
2 changes: 1 addition & 1 deletion src/easyscience/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.2.0'
Loading