-
Notifications
You must be signed in to change notification settings - Fork 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
Support Python 3.12 with CI, move tests to top level #89
Conversation
Not sure why CI isn't running here since I've manually added But runs using my forked CI: ![]() @sbillinge ready for review |
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.
Providing just a basic setup to build from the sources.
@@ -0,0 +1,3 @@ | |||
scipy | |||
numpy | |||
matplotlib |
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.
we could add diffpy.structure
while/after we address the issue #90
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.
yes. I think it is ok to add those other dependencies. For this particular package we could, if we want, have it split out into run-core.txt
and ren-ext.txt
? Strictly, srfit could be used as a general fitting program in a more or less stand-alone way, (core) but practically, it is always used with srreal and structure. What do you think?
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.
Can we have the core packages underrun.txt
and just create run_ext.txt
for the extra?
Since our centralized GH CI workflow files need to be updated:
from:
- name: Install ${{ inputs.project }} and requirements
run: |
conda install --file requirements/run.txt
to:
- name: Install ${{ inputs.project }} and requirements
run: |
conda install --file requirements/run.txt
conda install --file requirements/run-ext.txt
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.
Yes, good idea
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.
I reviewed this but didn't finish and submit the review, but here it is
@@ -0,0 +1,3 @@ | |||
scipy | |||
numpy | |||
matplotlib |
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.
yes. I think it is ok to add those other dependencies. For this particular package we could, if we want, have it split out into run-core.txt
and ren-ext.txt
? Strictly, srfit could be used as a general fitting program in a more or less stand-alone way, (core) but practically, it is always used with srreal and structure. What do you think?
@sbillinge Could you please merge this to |
Closes #88
Support Python 3.12 for
diffpy.srreal
, a major bump from 3.7.How to reproduce locally:
Time to cookiecut next, once merged.