-
Notifications
You must be signed in to change notification settings - Fork 12
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
add APS POLAR geometry #338
Changes from all commits
fe49497
095e8e9
4091173
615182f
e4466dc
d076eba
d295995
3fa4014
813d194
38f547c
2f7f6d5
eaa32b7
c05acbe
dbb6d56
3302e5d
e4f3575
6946acf
3373261
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
|
||
class Fourc(SimulatedE4CV): | ||
... | ||
"""4-circle for testing.""" | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
|
||
class Fourc(SimulatedE4CV): | ||
... | ||
"""4-circle for testing.""" | ||
|
||
|
||
FOURC_SETUP_CODE = """ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
|
||
class Fourc(SimulatedE4CV): | ||
... | ||
"""4-circle for testing.""" | ||
|
||
|
||
def check_hkl(diffractometer, h, k, l): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
|
||
class Fourc(SimulatedE4CV): | ||
... | ||
"""4-circle for testing.""" | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
|
||
class Fourc(SimulatedE4CV): | ||
... | ||
"""4-circle for testing.""" | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,9 @@ docs = [ | |
] | ||
tests = [ | ||
"bluesky", | ||
"tiled", | ||
"databroker <=1.999", | ||
"numpy <=1.999", | ||
Comment on lines
+68
to
+69
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. Why not 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. In Python version comparisons: 2.0.0b46 < 2, we need to be below anything with a 2 in the major position, even pre-releases such as 2.0.0b46. 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. Ahh, pre-releases. I thought that would not be used without explicitly requesting I suppose it comes by default because 2.0 is only available as a pre-release. That behavior will presumably go away when 2.0 gets released. 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. It's on conda-forge. Might be that |
||
"orjson", | ||
"packaging", | ||
] | ||
all = ["hklpy[docs,tests]"] | ||
|
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.
Why not
<2
?