-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* avoid importing scipy.stats.distributions * Update version to 1.11.5 and optimize importing for faster speed * Fix import statement in SetValue_random constructor * Update test.yml to use the latest container image and actions/checkout@v4 * Update
- Loading branch information
Showing
4 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,17 +44,23 @@ jobs: | |
|
||
test-linux-cloud: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/anybody/anybodycon-github-actions:latest_Beta | ||
container: ghcr.io/anybody/anybodycon-github-actions:latest | ||
|
||
needs: lint | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: install | ||
run: pip install . | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
post-cleanup: true | ||
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | ||
|
||
- name: build | ||
run: pixi run --frozen pip install . | ||
|
||
- name: test | ||
env: | ||
RLM_LICENSE_PASSWORD: ${{ secrets.LICENSE_PASSWORD }} | ||
RLM_LICENSE: ${{ secrets.LICENSE_SERVER }} | ||
run: pytest tests | ||
run: pixi run --frozen pytest tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
"NORMAL_PRIORITY_CLASS", | ||
] | ||
|
||
__version__ = "1.11.4" | ||
__version__ = "1.11.5" | ||
|
||
|
||
def print_versions(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters