-
Notifications
You must be signed in to change notification settings - Fork 0
Measurement MWP #21
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
base: develop
Are you sure you want to change the base?
Measurement MWP #21
Changes from all commits
ab9ca22
dd022c0
0ad0876
9496cfd
06c4ab1
3c60b65
67524e6
ed4401e
83e59d5
bb30f41
3693d5b
540e95b
27d9139
dd33e66
8b477cf
4cb2400
2648730
85e0df7
b929e03
c089eeb
59e2664
feef236
8142d72
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,15 +21,17 @@ classifiers = [ | |
| "Topic :: Scientific/Engineering", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3 :: Only", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Programming Language :: Python :: 3.12", | ||
| "Programming Language :: Python :: 3.13", | ||
| "Development Status :: 3 - Alpha" | ||
| ] | ||
| requires-python = ">=3.10,<3.13" | ||
| requires-python = ">=3.11,<3.14" | ||
| dependencies = [ | ||
| "easyscience>=2.0.0", | ||
| #"easyscience@git+https://github.com/easyscience/corelib#egg=easylist2", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You rely on |
||
| #"easyscience>=2.0.0", | ||
| "scitiff", | ||
| "essimaging", | ||
| "plopp", | ||
| "ncrystal[composer]" | ||
| ] | ||
|
|
@@ -51,7 +53,10 @@ dev = [ | |
| "pytest>=5.2", | ||
| "pytest-cov>=3.0.0", | ||
| "ruff", | ||
| "tox-gh-actions" | ||
| "tox-gh-actions", | ||
| "ipython==9.7.0", | ||
| "matplotlib==3.10.7", | ||
| "ipympl==0.9.8", | ||
| ] | ||
| docs = [ | ||
| "doc8", | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you need to have the same file in two different places in the project? |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,3 +10,7 @@ | |
| __version__ = '0.0.0' | ||
|
|
||
| del importlib | ||
|
|
||
| from .measurement import Measurement | ||
|
|
||
| __all__ = [Measurement] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| from .measurement import Measurement | ||
|
|
||
| __all__ = [Measurement] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inconsistent python version between pixi.toml and pyproject.toml!