Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Sourty committed May 26, 2024
1 parent b9feb94 commit 7b6449b
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 44 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/rust.yml

This file was deleted.

52 changes: 41 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,31 +29,61 @@ jobs:
toolchain: stable
override: true

- name: Install build dependencies
run: pip install setuptools-rust
- name: Install package dependencies
run: pip install setuptools-rust==1.9.0

- name: Build wheel
run: pip wheel .
- name: Install build tools
run: pip install wheel

- name: Create source distribution
run: python setup.py sdist
- name: Build the package
run: python setup.py sdist bdist_wheel

- name: Install auditwheel
run: pip install auditwheel

- name: Repair wheels with auditwheel
run: |
for whl in dist/*.whl; do
auditwheel repair "$whl" -w dist/
done
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: dist
name: dist-${{ matrix.python-version }}
path: dist/*

publish:
needs: build
runs-on: ubuntu-latest

steps:
- name: Download artifact
- name: Download artifacts for Python 3.8
uses: actions/download-artifact@v3
with:
name: dist-3.8
path: dist/3.8

- name: Download artifacts for Python 3.9
uses: actions/download-artifact@v3
with:
name: dist-3.9
path: dist/3.9

- name: Download artifacts for Python 3.10
uses: actions/download-artifact@v3
with:
name: dist-3.10
path: dist/3.10

- name: Download artifacts for Python 3.11
uses: actions/download-artifact@v3
with:
name: dist
path: dist
name: dist-3.11
path: dist/3.11

- name: Combine all artifacts
run: mkdir -p final_dist && find dist/ -type f -exec cp {} final_dist/ \;

- name: Set up Python 3.11
uses: actions/setup-python@v4
Expand All @@ -67,4 +97,4 @@ jobs:
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*
run: twine upload final_dist/*
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ __pycache__/
cache/
# C extensions
*.so
test/

# Distribution / packaging
.Python
Expand Down
6 changes: 0 additions & 6 deletions pyprojet.toml

This file was deleted.

6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

from lenlp.__version__ import __version__

with open("readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

base_packages = ["scikit-learn >= 1.5.0", "scipy >= 1.13.1"]
dev = ["maturin >= 1.5.1", "pytest-cov >= 5.0.0", "pytest >= 7.4.4", "ruff >= 0.1.15"]

Expand All @@ -15,7 +12,6 @@
version=f"{__version__}",
author="Raphael Sourty",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raphaelsty/lenlp",
download_url="https://github.com/raphaelsty/lenlp/archive/v_01.tar.gz",
Expand All @@ -30,5 +26,5 @@
],
python_requires=">=3.8",
rust_extensions=[RustExtension("rslenlp", binding=Binding.PyO3)],
setup_requires=["setuptools-rust>=1.4.0", "maturin >= 1.5.1"],
setup_requires=["setuptools-rust>=1.9.0"],
)

0 comments on commit 7b6449b

Please sign in to comment.