or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Planning Meeting: Build Systems, CI Infrastructure
Date: Friday 12:00 - 1:00 PM
Topics: Build Systems, CI Infrastructure
Issues: #3, #5
Attendees
Relevant links
Ideas from issues
Brigitta:
Also, this could include documentation about the available CI tooling, though there is a risk involved here with keeping this up-to-date.
Dan McCloy: encouragement / guidance / templates for member projects on setting up a CI job that uses pip –pre or nightlies or some other way of getting early warning of breaking changes in dependencies. This could involve tutorial/documentation material (#21) as well as template files (#10)
Brigitta: another piece: cron github jobs to issue send out notifications (preferably staying within github rather than an email, but email is still better than the current not really predictable mess). Of course, it would be best if github would start supporting it, but I don't think we should wait for them as it could take years.
Chatted with Ross about this, but haven't come up with an actual implementation to make it happen.
Meeting notes
Jarrod: two issues, not sure which one to start with.
Henry:
- scikit-build / scikit-build-core, meson / meson-python avoid setuptools
- question: what do we want to address - there are lots of things that would be needed.
- scikit-HEP development pages
- reporeview.dev?
- cookie-cutter that has 12 different backends
- put it under a better name?
Jarrod:
- most projects are aware of 3.12 coming out
- 3.12 removes distutils, but doesn't affect all that many projects
- Except those based on numpy.distutils?
- But, in next beta (on Monday, 5/22), setuptools no longer in default environment; so libraries won't build without
pyproject.toml
- ~300 projects using scikit-build, 80 did not have a pyproject.toml
Leah:
- people are confused about which project they should be using to get started
- what are the general standards that work for people that are not using pure python
* sounds like there is some examples in scikit build docs for fortran??
Henry:
- https://scikit-build-core.readthedocs.io/en/latest/getting_started.html
- there needs to be better documentation on examples showing multiple systems
Jarrod:
- there may be some churn, like there was with version control
Henry:
- CMake is heavily used. Building subproject while building a project.
Leah:
- Sometimes options are overwhelming, and some people just want an answer.
Ross:
- as someone that wants to just be a consumer of this
- PyPA's distributing binary extension is "FIXME" and has been, for years
- https://packaging.python.org/en/latest/guides/packaging-binary-extensions/#publishing-binary-extensions
Jarrod https://github.com/scientific-python/spin
- common interface to build docs, run test
- currently works with meson-python
- extension of devpy
Henry:
- why not use tox and nox?
Example from Stéfan - https://github.com/scikit-image/scikit-image/blob/main/.spin/cmds.py
Henry:
- I think a large part of the reason dev.py got developed is there was no editable install at the time.
Ross:
-
pip install -e .
andmake html
used to work on all of the projectsHenry:
- standardization could be a set of commands that all projects support.
CI discussion
Brigitta:
- two draft SPECs to push over the draft status
GH actions
Action Plan
That would get us 80% of the way there.