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
Revert "drop support for older python versions <3.9"
Azaya89 committed Mar 12, 2025

Verified

This commit was signed with the committer’s verified signature.
hoxbro Simon Høxbro Hansen
commit 6cbdb748d7540c2eb3db20928e58e4306cf66fe7
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ dynamic = ["version"]
description = "Collection of perceptually uniform colormaps"
readme = "README.md"
license = { text = "CC-BY License" }
requires-python = ">=3.9"
requires-python = ">=3.7"
authors = [
{ name = "James A. Bednar", email = "[email protected]" },
]
@@ -22,6 +22,8 @@ classifiers = [
"License :: OSI Approved",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
@@ -77,7 +79,8 @@ include-package-data = false
include = ["colorcet"]

[tool.setuptools_scm]
version_file = "colorcet/_version.py"
# Replace with version_file when Python 3.7 is dropped.
write_to = "colorcet/_version.py"

[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers", "--color=yes"]