Skip to content

Commit

Permalink
Merge pull request #16 from JeffWigger/feature/update-build-depends
Browse files Browse the repository at this point in the history
Update build dependencies
  • Loading branch information
JeffWigger authored Nov 10, 2024
2 parents dccae2e + b854318 commit b3bfda4
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v5.0.0
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -39,11 +39,11 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true

- uses: pypa/cibuildwheel@v2.12.1
- uses: pypa/cibuildwheel@v2.21.3
env:
CIBW_ARCHS_MACOS: auto universal2
CIBW_BUILD: cp*manylinux_x86_64
Expand Down Expand Up @@ -76,6 +76,6 @@ jobs:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@v1.8.5
- uses: pypa/gh-action-pypi-publish@v1
with:
password: ${{ secrets.pypi_password }}
password: ${{ secrets.PYPI_PASSWORD }}
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = "0.0.2"
version = "0.0.3"
# The full version, including alpha/beta/rc tags.
release = "0.0.2"
release = "0.0.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion include/compc
2 changes: 1 addition & 1 deletion pybind11
Submodule pybind11 updated 203 files
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ build-backend = "setuptools.build_meta"

[tool.poetry]
name = "compintpy"
version = "0.0.2"
description = ""
version = "0.0.3"
description = "Python bindings for compintc: A variable length compression algorithm."
authors = ["Jeffrey Wigger"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/JeffWigger/FastDynamicBatcher"
homepage = "https://github.com/JeffWigger/FastDynamicBatcher"
keywords = ["machine-learning", "batching"]

[tool.poetry.group.dev.dependencies]
sphinx = "^7.2.6"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,8 @@ def build_extension(self, ext: CMakeExtension) -> None:

setup(
name="compintpy",
version="0.0.2",
version="0.0.3",
author="Jeffrey Wigger",
author_email="[email protected]",
description="Python bindings for compintc: A variable length compression algorithm.",
long_description="",
ext_modules=[CMakeExtension("_compintpy")],
Expand Down

0 comments on commit b3bfda4

Please sign in to comment.