Skip to content
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

chore: add README.md to awkward-cpp #1895

Merged
merged 4 commits into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/deploy-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@ jobs:
config-file: cibuildwheel.toml
package-dir: awkward-cpp

- name: Check metadata
shell: python
run: |
import subprocess, glob
subprocess.run(
["pipx", "run", "twine", "check", *glob.glob("wheelhouse/*.whl")],
check=True
)

- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -144,6 +153,15 @@ jobs:
config-file: cibuildwheel.toml
package-dir: awkward-cpp

- name: Check metadata
shell: python
run: |
import subprocess, glob
subprocess.run(
["pipx", "run", "twine", "check", *glob.glob("wheelhouse/*.whl")],
check=True
)

- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions awkward-cpp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `awkward-cpp`

`awkward-cpp` provides precompiled routines for the `awkward` package. It is not useful on its own, only as a dependency for `awkward `.
1 change: 1 addition & 0 deletions awkward-cpp/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ version = "1"
dependencies = [
"numpy>=1.13.1"
]
readme = "README.md"
description = "CPU kernels and compiled extensions for Awkward Array"
authors = [
{name = "Jim Pivarski", email = "[email protected]"},
Expand Down