Skip to content

Commit

Permalink
rip a new release to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Oct 18, 2022
1 parent ca7b892 commit a029379
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:


publish-on-pypi:
# skip this, always, as we can't upload pioreactor to PyPI, see https://github.com/pypi/warehouse/issues/9404 (specifically our sqlite3worker package.)
if: (1==0)
name: 📦 Publish tagged releases to PyPI
runs-on: ubuntu-latest
needs: build
Expand All @@ -55,7 +57,7 @@ jobs:
notify-custopizer-build:
name: 📧 Notify Pioreactor/CustoPizer
runs-on: ubuntu-latest
needs: publish-on-pypi
needs: build
steps:
- name: 👀 Determine version
run: |
Expand All @@ -64,6 +66,6 @@ jobs:
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.REPODISPATCH_TOKEN }}
repository: Pioreactor/pioreactor-UpToDate
repository: Pioreactor/CustoPizer
event-type: pioreactor_release
client-payload: '{"version": "${{ env.PIOREACTOR_VERSION }}"}'
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 22.10.2
- no-op release

### 22.10.1
- `BackgroundJobWithDodging` now looks for the config.ini section `[<job_name>.config]`.

Expand Down
2 changes: 1 addition & 1 deletion pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import annotations


__version__ = "22.10.1"
__version__ = "22.10.2"


def _get_hardware_version() -> tuple[int, int]:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"msgspec>=0.8.0",
# tech debt - this needed to be in the core req
# leader requirement
# this direct dependency also prevents us from uploading to PyPI...
"sqlite3worker @ https://github.com/pioreactor/sqlite3worker/archive/master.zip#egg=sqlite3worker-0.0.1",
]

Expand All @@ -41,6 +42,7 @@
version=__version__, # type: ignore # noqa: F821
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Pioreactor",
author_email="[email protected]",
install_requires=CORE_REQUIREMENTS,
Expand Down

0 comments on commit a029379

Please sign in to comment.