optixstuff 1.0.0__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- optixstuff-1.0.2/.readthedocs.yaml +20 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/CHANGELOG.md +14 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/PKG-INFO +1 -1
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/_version.py +2 -2
- {optixstuff-1.0.0 → optixstuff-1.0.2}/.gitignore +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/LICENSE +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/README.md +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/pyproject.toml +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/__init__.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/_repr.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/coronagraph.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/detector.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/exposure.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/optical_elements.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/optical_path.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/primary.py +0 -0
- {optixstuff-1.0.0 → optixstuff-1.0.2}/src/optixstuff/yippy_coronagraph.py +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Required
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
# Set the OS, Python version and other tools you might need
|
|
5
|
+
build:
|
|
6
|
+
os: ubuntu-22.04
|
|
7
|
+
tools:
|
|
8
|
+
python: "3.12"
|
|
9
|
+
|
|
10
|
+
python:
|
|
11
|
+
install:
|
|
12
|
+
- method: pip
|
|
13
|
+
path: .
|
|
14
|
+
extra_requirements:
|
|
15
|
+
# Install with the [docs] flag for sphinx docs specific extensions
|
|
16
|
+
- docs
|
|
17
|
+
|
|
18
|
+
# Build documentation in the "docs/" directory with Sphinx
|
|
19
|
+
sphinx:
|
|
20
|
+
configuration: docs/conf.py
|
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.2](https://github.com/CoreySpohn/optixstuff/compare/v1.0.1...v1.0.2) (2026-05-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Add mermaid rendering to docs ([26e1cf0](https://github.com/CoreySpohn/optixstuff/commit/26e1cf0f8b43fe9ff16fe9c66e7bd877adf9ccd6))
|
|
9
|
+
|
|
10
|
+
## [1.0.1](https://github.com/CoreySpohn/optixstuff/compare/v1.0.0...v1.0.1) (2026-05-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* Add readthedocs yaml file ([4f2380e](https://github.com/CoreySpohn/optixstuff/commit/4f2380e3e14cdecd40059bbec1a1d9d8c5684512))
|
|
16
|
+
|
|
3
17
|
## [1.0.0](https://github.com/CoreySpohn/optixstuff/compare/v0.2.0...v1.0.0) (2026-05-25)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: optixstuff
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Hardware abstractions for the HWO direct imaging simulation suite
|
|
5
5
|
Project-URL: Homepage, https://github.com/CoreySpohn/optixstuff
|
|
6
6
|
Project-URL: Issues, https://github.com/CoreySpohn/optixstuff/issues
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '1.0.
|
|
22
|
-
__version_tuple__ = version_tuple = (1, 0,
|
|
21
|
+
__version__ = version = '1.0.2'
|
|
22
|
+
__version_tuple__ = version_tuple = (1, 0, 2)
|
|
23
23
|
|
|
24
24
|
__commit_id__ = commit_id = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|