-
Notifications
You must be signed in to change notification settings - Fork 51
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
Fix #345 #351
Fix #345 #351
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #351 +/- ##
==========================================
+ Coverage 98.71% 98.82% +0.10%
==========================================
Files 28 28
Lines 1873 1873
Branches 405 405
==========================================
+ Hits 1849 1851 +2
Misses 2 2
+ Partials 22 20 -2 ☔ View full report in Codecov by Sentry. |
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.
LGTM, just fix the CI that pulls from your personal GH.
devtools/conda-envs/test_env.yaml
Outdated
@@ -24,5 +24,5 @@ dependencies: | |||
- sphinx_rtd_theme | |||
|
|||
- pip: | |||
- alchemtest @ https://github.com/alchemistry/alchemtest/archive/master.zip | |||
- alchemtest @ git+https://github.com/xiki-tempula/alchemtest.git@feat_main |
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.
change back
@@ -50,7 +50,7 @@ jobs: | |||
with: | |||
environment-file: devtools/conda-envs/test_env.yaml | |||
environment-name: test | |||
extra-specs: | | |||
create-args: | |
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.
Is this also being fixed in #346 ?
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.
Remove the py3.12 support now. I will add the py3.12 support in another PR, where I think I will update the versioneer. I would hope to do the same sort of updating to the cookie cutter here but I guess that will generate big merge conflict for #348 |
channels: | ||
dependencies: | ||
# Base depends | ||
- python=3.10 |
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.
Pin it to a python version so it would not break just due to some python update.
Fix #345