-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating to pyproject.toml, using ruff for QA, and switching to UV f…
…or installations (#81) * Switching from setup.cfg to pyproject.toml -- untested * Fixing small issues with the pyproject.toml * Fixing linting errors with Ruff * Switching over to UV for installation. Fixing the mocking to reflect new calls * Fixing lower bound based on edgetest testing * Running ruff * Using ruff instead of flake8 * Updating the action deployment * Seeing if upgrading the actions helps * Trying to fix the Windows issue by making the base directory dynamic. * Fixing the ruff issue * Additional logging for command line calls (like uv) * Adding .exe extension to the Python path for Windows * Fixing test errors after Windows python path fix * Switching away from the dask installation since that was causing some issues. Moved to polars so we have fewer transient dependencies to worry about * Fixing test for Python 3.8 and 3.9 * Updating the pre-commit configuration
- Loading branch information
Showing
23 changed files
with
503 additions
and
441 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 |
---|---|---|
|
@@ -16,6 +16,6 @@ jobs: | |
- id: run-edgetest | ||
uses: edgetest-dev/[email protected] | ||
with: | ||
edgetest-flags: '-c setup.cfg --export' | ||
edgetest-flags: '-c pyproject.toml --export' | ||
base-branch: 'dev' | ||
skip-pr: 'false' |
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
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Configuration file for the Sphinx documentation builder. | ||
# | ||
|
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
"""Package initialization.""" | ||
|
||
|
||
__version__ = "2024.4.0" | ||
|
||
__title__ = "edgetest" | ||
|
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
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
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
Oops, something went wrong.