forked from gmggroup/omf-python
-
Notifications
You must be signed in to change notification settings - Fork 1
DEVOPS-693: migrate from conda-lock to pixi #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
saicheranb
wants to merge
34
commits into
develop
Choose a base branch
from
DEVOPS-693
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
…add pixi configuration - Removed dynamic dependencies for 'dependencies' in pyproject.toml. - Added explicit dependencies for numpy, properties, pypng, six, and vectormath. - Introduced pixi project configuration with channels and platform specifications. - Defined dependencies for different features (test, dev, doc) under pixi. - Updated versioning and removed commented-out geoh5py dependency. - Adjusted test tasks and local dependency installation commands. Refactor version_test.py to improve readability and efficiency - Simplified get_conda_recipe_version function by removing unnecessary template rendering. - Streamlined file reading process for recipe.yaml.
…undant section - Added Sphinx dependency to the main dependencies list. - Removed the separate documentation dependencies section.
… streamline YAML loading
- Changed the required Python version from ">=3.10,<4.0" to ">=3.9,<4.0" in pyproject.toml to support Python 3.9. - Updated Sphinx dependency from "*" to ">=5.3,<6.0" for better compatibility and to avoid potential breaking changes in future versions.
for more information, see https://pre-commit.ci
… dynamic versioning
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #107 +/- ##
===========================================
- Coverage 92.23% 92.13% -0.11%
===========================================
Files 28 26 -2
Lines 1559 1488 -71
===========================================
- Hits 1438 1371 -67
+ Misses 121 117 -4
🚀 New features to boost your workflow:
|
sebhmg
requested changes
Sep 10, 2025
- Updated numpy dependency to use exact versioning (1.26.*). - Changed pypng and vectormath dependencies to specific versions (0.20220715.* and 0.2.* respectively). - Adjusted six dependency to allow only version 1.*. - Modified sphinx dependency to specify version range (>=5.3, 5.*). - Added new test-doc task for documentation testing. - Enhanced test command to include tests directory.
sebhmg
reviewed
Sep 11, 2025
… testing via pytest docs.
- re-organize to keep everything together for a given feature - define task test-docs to autoselect the environment - add inderect deps so they they do not come from pypi - add future geoh5py version in project: ok if it cannot be installed for now - add installation of package for doc (or it fails)
As indirect dependencies come through pip, and we force them from conda, their versions must be specified, or they will conflict with the most recent versions from conda
less risk to break python.toml because error in large config also move ipython to dev dependencies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
DEVOPS-693 - migrate from conda-lock to pixi