Skip to content
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

Migrate colorcet to using pixi for development #128

Merged
merged 26 commits into from
Mar 14, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add python 3.8
Azaya89 committed Mar 14, 2025

Verified

This commit was signed with the committer’s verified signature.
hoxbro Simon Høxbro Hansen
commit 79950b11068bedee96af3cfa26c12c485b35c990
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -89,7 +89,7 @@ jobs:
run: |
MATRIX=$(jq -nsc '{
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
"environment": ["test-39", "test-310", "test-311", "test-312"],
"environment": ["test-38", "test-39", "test-310", "test-311", "test-312"],
}')
echo "MATRIX=$MATRIX" >> $GITHUB_ENV
7 changes: 7 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@ PYTHONIOENCODING = "utf-8"
[environments]
default = ["py312", "required", "test-core", "test", "example", "test-example", "lint", "dev"]

[environments.test-38]
features = ["py38", "required", "test-core", "test", "example", "test-example"]
no-default-feature = true

[environments.test-39]
features = ["py39", "required", "test-core", "test", "example", "test-example"]
no-default-feature = true
@@ -51,6 +55,9 @@ install = 'python -m pip install --no-deps --disable-pip-version-check -e .'
setup-dev = { depends-on = ["install", "lint-install"] }
sync-git-tags = 'python scripts/sync_git_tags.py colorcet'

[feature.py38.dependencies]
python = "3.8.*"

[feature.py39.dependencies]
python = "3.9.*"