diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 952c5ba6..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Publish to PyPI - -on: - release: - types: [published] - -permissions: - contents: read - -jobs: - deploy: - runs-on: ubuntu-latest - - environment: - name: release - - permissions: - contents: read - id-token: write - - steps: - - uses: actions/checkout@v7 - - name: Set up Python - uses: actions/setup-python@v6 - with: - python-version: '3.13' - cache: 'pip' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install hatch - - name: Build package - run: hatch build - - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - skip-existing: true diff --git a/.github/workflows/release-bot.yml b/.github/workflows/release-bot.yml index b2f8abdc..e84bfd2f 100644 --- a/.github/workflows/release-bot.yml +++ b/.github/workflows/release-bot.yml @@ -1,6 +1,4 @@ on: - release: - types: [published] workflow_dispatch: name: release-bot.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index ee806fb7..13717d01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [1.0.3] - 2026-06-19 + +No major changes bumping due to versioning issue in PyPI publishing. + ## [1.0.2] - 2026-06-19 No major changes bumping due to versioning issue in PyPI publishing. diff --git a/openaq/__init__.py b/openaq/__init__.py index 0e682ae2..7fc8643f 100644 --- a/openaq/__init__.py +++ b/openaq/__init__.py @@ -1,6 +1,6 @@ """OpenAQ Python SDK.""" -__version__ = "1.0.2" +__version__ = "1.0.3" import logging