Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Builds and performs various check

---
name: Build
name: OMERO

on:
push:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: PyPI
on: push

jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build a binary wheel and a source tarball
run: |
python -mpip install build
python -m build
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_PASSWORD }}
- name: Create a GitHub release
if: startsWith(github.ref, 'refs/tags')
run: gh release create --generate-notes "${GITHUB_REF#refs/tags/}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
OMEGO version history
=====================

0.8.0.rc1 (February 2026)
-------------------------

* Fix build & remove pkg_resources (#137)

0.7.0 (November 2019)
---------------------

Expand Down
8 changes: 0 additions & 8 deletions Makefile

This file was deleted.

8 changes: 8 additions & 0 deletions Makefile_old
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# release:
# git describe --exact
# python setup.py sdist upload --sign

# clean:
# rm -rf build dist omego.egg-info *.pyc

# .PHONY: register clean
2 changes: 1 addition & 1 deletion omego/RELEASE-VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1.dev
0.8.0.rc1
Loading