Developer Blog #10
Replies: 8 comments
-
OZI in-the-largePost I 18-Aug-2023The OZI project focuses on packaging Python modules with Meson. Let's talk about about OZI in-the-large:
|
Beta Was this translation helpful? Give feedback.
-
Personal IntroductionPost II 18-Aug-2023I am Eden Rose, the maintainer of the OZI project. |
Beta Was this translation helpful? Give feedback.
-
coverage and pragma: deferPost III 19-Aug-2023This is the standard snippet I have been using: [tool.coverage.report]
exclude_lines = [
"#\\s*(pragma|PRAGMA)[:\\s]?\\s*(no|NO)\\s*(cover|COVER)",
"#\\s*(pragma|PRAGMA)[:\\s]?\\s*(defer|DEFER)\\s*(to|TO)\\s*[a-zA-Z0-9_]*",
...
] |
Beta Was this translation helpful? Give feedback.
-
OZI Homepage Layout ChangesPost IV 24-Aug-2023The project website is reasonably done style and mobile support wise. |
Beta Was this translation helpful? Give feedback.
-
OZI Matriculation to AlphaPost V 30-Aug-2023This is what will need to happen before working on an Alpha version for PyPI:
|
Beta Was this translation helpful? Give feedback.
-
Alpha Progress and Project RelicensingPost VI 16-Sep-2023As of 13-Sept-2023 I have switched the main repository license to Apache-2.0 WITH LLVM-Exception. Over the past week I have been working on making the publishing script Until then we are using a comment at the top of the PKG-INFO payload e.g. .. OZI
Classifier: License-Expression :: [SPDX-License-Expression]
Classifier: License-File :: LICENSE.txt The majority of the Pre-Alpha work remaining will be documentation related. |
Beta Was this translation helpful? Give feedback.
-
Progress UpdatePost VII 25-Sep-2023So I am very pleased with the current state of OZI. I am confident an Alpha can start before year end. To that end I will need to update |
Beta Was this translation helpful? Give feedback.
-
Triage and TweaksPost VIII 06-Nov-2023So over the next few weeks I will be creating issues for enhancements I would like to get done before the Alpha release in January. I will also be reconstructing blastpipe with the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Pragmatic Deferal
Post 0 18-Aug-2023
In many cases coverage reports will indicate blocks of code that writing a test for would amount to
implementing a sanity check of the principal and reimplementing their test cases.
e.g. looping over simplicial types:
# pragma: defer to python
Beta Was this translation helpful? Give feedback.
All reactions