Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Laky-64 committed Sep 22, 2023
2 parents 2f97392 + f2c3f30 commit 50f4acf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@ jobs:
with:
path: tmp/

- name: Prepare source distribution
run: |
python3 -m pip install --upgrade setuptools
python3 setup.py sdist

- name: Zip releases
run: |
mkdir releases
Expand All @@ -149,9 +155,7 @@ jobs:
prerelease: ${{ steps.patch-version.outputs.is_dev }}

- name: Extract artifacts
run: |
mkdir dist
find tmp -type f -name "*.whl" | xargs -I {} mv {} dist
run: find tmp -type f -name "*.whl" | xargs -I {} mv {} dist

- name: Publish a Python distribution to PyPI.
if: github.ref == 'refs/heads/master' && github.repository == 'pytgcalls/ntgcalls'
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ def run(self):
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
ext_modules=[CMakeExtension("ntgcalls")],
cmdclass={
Expand Down

0 comments on commit 50f4acf

Please sign in to comment.