Skip to content

Commit

Permalink
Merge pull request #22 from TGSAI/tasansal-patch-1
Browse files Browse the repository at this point in the history
bump patch version
  • Loading branch information
tasansal authored Mar 1, 2024
2 parents e088652 + 06bd26b commit 2ed87c7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v3"
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.os }}-${{ matrix.python }}
path: ".coverage.*"

- name: Upload documentation
Expand Down Expand Up @@ -143,9 +143,10 @@ jobs:
nox --version
- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage data and display human readable report
run: |
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $ pip install segy
For details, please see the [installation instructions]
in the documentation.

## Using MDIO
## Using `segy`

Please see the [Command-line Usage] for details.

Expand Down Expand Up @@ -95,7 +95,7 @@ You can build your own SEG-Y "standard" with composition of specs for:
- Binary header
- Traces (header + extended header + samples)

## Contributing to MDIO
## Contributing to `segy`

Contributions are very welcome.
To learn more, see the [Contributor Guide].
Expand Down Expand Up @@ -126,4 +126,6 @@ with more modern tooling applied elsewhere!.

[apache 2.0 license]: https://github.com/TGSAI/segy/blob/main/LICENSE
[contributor guide]: https://github.com/TGSAI/segy/blob/main/CONTRIBUTING.md
[command-line usage]: https://segy.readthedocs.io/en/latest/usage.html
[api reference]: https://segy.readthedocs.io/en/latest/reference.html
[installation instructions]: https://segy.readthedocs.io/en/latest/installation.html
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ end-before: <!-- github-only -->

[apache 2.0 license]: license
[contributor guide]: contributing
[command-line usage]: cli_usage
[api reference]: api_reference
[installation instructions]: installation

```{toctree}
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "segy"
version = "0.0.2"
version = "0.0.3"
description = ""
authors = ["Altay Sansal <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -122,6 +122,8 @@ branch = true
source = ["segy", "tests"]

[tool.coverage.report]
show_missing = true
fail_under = 80
exclude_also = [
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
Expand Down

0 comments on commit 2ed87c7

Please sign in to comment.