Skip to content

Commit

Permalink
PyPi Aagain
Browse files Browse the repository at this point in the history
- trying to get the build to work for pypi.
  • Loading branch information
carlkidcrypto committed Jan 31, 2024
1 parent 65551d1 commit b73f1aa
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build_and_publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Set up dependencies
uses: carlkidcrypto/[email protected]
with:
linux: sudo apt-get update;
sudo apt-get install -y libsnmp-dev libperl-dev;

- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a source tarball
run: >-
python -m
build
--sdist
--outdir dist/
.
- name: Download Wheels
uses: actions/download-artifact@v4
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/build_and_publish_to_test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,27 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Set up dependencies
uses: carlkidcrypto/[email protected]
with:
linux: sudo apt-get update;
sudo apt-get install -y libsnmp-dev libperl-dev;

- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a source tarball
run: >-
python -m
build
--sdist
--outdir dist/
.
- name: Download Wheels
uses: actions/download-artifact@v4
Expand Down

0 comments on commit b73f1aa

Please sign in to comment.