19 Commits

Author SHA1 Message Date
95ba34187a Docs 2025-10-09 23:22:26 -07:00
4d2dfcd370 Docs 2025-10-09 23:21:43 -07:00
717b6a4117 Docs 2025-10-09 23:19:05 -07:00
7393afac95 Docs 2025-10-09 23:17:46 -07:00
e9450cd65a Docs 2025-10-09 23:16:11 -07:00
51b1a2e8b4 Docs 2025-10-09 23:15:19 -07:00
53303232b4 Docs 2025-10-09 23:11:00 -07:00
3519a0251f Docs 2025-10-09 23:09:51 -07:00
79ec1649c4 Docs 2025-10-09 23:09:04 -07:00
7c3f4c9b5e Docs 2025-10-09 23:08:32 -07:00
2e8224cb3c Docs fix 2025-10-09 23:07:39 -07:00
8ef4186b4c Merge branch 'master' of https://github.com/iluvcapra/wavinfo 2025-10-09 23:02:32 -07:00
cd5346c1cb Docs fixups 2025-10-09 23:02:15 -07:00
Jamie Hardt
925bf4f8a6 Update pythonpublish.yml 2025-10-09 22:55:13 -07:00
Jamie Hardt
e98ba0bf07 Update pythonpublish.yml 2025-10-09 22:48:40 -07:00
afca634dc3 modernized build action 2025-10-09 22:44:58 -07:00
Jamie Hardt
df9ae0f4d6 Update pyproject.toml 2025-10-09 22:34:45 -07:00
Jamie Hardt
2f23bcb982 Merge pull request #40 from iluvcapra/maint-uv
Build modernization
2025-10-09 22:33:55 -07:00
Jamie Hardt
afe5ea9ed3 Update pythonpublish.yml
Updated publish action to latest version
2025-09-08 12:49:05 -07:00
4 changed files with 31 additions and 30 deletions

View File

@@ -16,21 +16,25 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install setuptools build wheel twine lxml - name: Setup uv and Handle Its Cache
# You may pin to the exact commit or the version.
# uses: hynek/setup-cached-uv@757bedc3f972eb7227a1aa657651f15a8527c817
uses: hynek/setup-cached-uv@v2.3.0
- name: Build - name: Build
python -m build . run: |
uv build --wheel
- name: Publish to Pypi - name: Publish to Pypi
uses: pypa/gh-action-pypi-publish@v1.12.2 uses: pypa/gh-action-pypi-publish@v1.13.0
with: with:
password: ${{ secrets.PYPI_APIKEY }} password: ${{ secrets.PYPI_APIKEY }}
- name: Send Bluesky Post # - name: Send Bluesky Post
uses: myConsciousness/bluesky-post@v5 # uses: myConsciousness/bluesky-post@v5
with: # with:
text: | # text: |
I've released a new version of wavinfo, my module for # I've released a new version of wavinfo, my module for
reading WAVE metadata. # reading WAVE metadata.
link-preview-url: ${{ github.server_url }}/${{ github.repository }} # link-preview-url: ${{ github.server_url }}/${{ github.repository }}
identifier: ${{ secrets.BLUESKY_APP_USER }} # identifier: ${{ secrets.BLUESKY_APP_USER }}
password: ${{ secrets.BLUESKY_APP_PASSWORD }} # password: ${{ secrets.BLUESKY_APP_PASSWORD }}
service: bsky.social # service: bsky.social
retry-count: 1 # retry-count: 1

View File

@@ -9,11 +9,11 @@ version: 2
build: build:
os: ubuntu-20.04 os: ubuntu-20.04
tools: tools:
python: "3.10" python: "3.13"
# You can also specify other tool versions: jobs:
# nodejs: "16" install:
# rust: "1.55" - pip install --upgrade pip
# golang: "1.17" - pip install --group 'doc'
# Build documentation in the docs/ directory with Sphinx # Build documentation in the docs/ directory with Sphinx
sphinx: sphinx:
@@ -28,5 +28,3 @@ python:
install: install:
- method: pip - method: pip
path: . path: .
extra_requirements:
- doc

View File

@@ -12,25 +12,24 @@
# add these directories to sys.path here. If the directory is relative to the # add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here. # documentation root, use os.path.abspath to make it absolute, like shown here.
# #
import importlib # import importlib
import os import os
import sys import sys
sys.path.insert(0, os.path.abspath('../..')) sys.path.insert(0, os.path.abspath('../../src'))
sys.path.insert(0, os.path.abspath("../../..")) sys.path.insert(0, os.path.abspath("../../../src"))
print(sys.path) print(sys.path)
import importlib
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = u'wavinfo' project = u'wavinfo'
copyright = u'2018-2024, Jamie Hardt' copyright = u'2018-2025, Jamie Hardt'
author = u'Jamie Hardt' author = u'Jamie Hardt'
# The short X.Y version # The short X.Y version
version = "3.1" version = "4.0"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = importlib.metadata.version("wavinfo") release = "4.0.0"
# release = importlib.metadata.version("wavinfo")
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@@ -4,7 +4,7 @@ build-backend = "uv_build"
[project] [project]
name = "wavinfo" name = "wavinfo"
version = "3.1.1" version = "4.0.0"
description = "Probe WAVE files for all metadata" description = "Probe WAVE files for all metadata"
authors = [{ name = "Jamie Hardt", email = "jamiehardt@me.com"}] authors = [{ name = "Jamie Hardt", email = "jamiehardt@me.com"}]
license = "MIT" license = "MIT"