Skip to content

Commit a994a60

Browse files
authored
Merge branch 'ome:master' into split-view-user-label
2 parents 6fd58f1 + 1c82ac1 commit a994a60

File tree

28 files changed

+175
-684
lines changed

28 files changed

+175
-684
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.29.3.dev0
2+
current_version = 5.30.2.dev0
33
commit = True
44
tag = True
55
sign_tags = True

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-python@v5
1414
with:
15-
python-version: '3.9'
15+
python-version: '3.10'
1616
- name: Install dependencies
1717
run: python -mpip install --upgrade wheel
1818
- name: Install Ice
19-
run: pip install https://github.com/ome/zeroc-ice-py-github-ci/releases/download/0.2.0/zeroc_ice-3.6.5-cp39-cp39-linux_x86_64.whl
19+
run: pip install https://github.com/ome/zeroc-ice-py-github-ci/releases/download/0.2.0/zeroc_ice-3.6.5-cp310-cp310-linux_x86_64.whl
2020
- name: Run tests
2121
run: pip install -e .
2222
- name: Test import

.github/workflows/publish_pypi.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-python@v5
1212
with:
13-
python-version: '3.9'
13+
python-version: '3.10'
1414
- name: Build a binary wheel and a source tarball
1515
run: |
1616
python -mpip install build
@@ -20,3 +20,8 @@ jobs:
2020
uses: pypa/gh-action-pypi-publish@release/v1
2121
with:
2222
password: ${{ secrets.PYPI_PASSWORD }}
23+
- name: Create a GitHub release
24+
if: startsWith(github.ref, 'refs/tags')
25+
run: gh release create --generate-notes "${GITHUB_REF#refs/tags/}"
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/tox.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
python-version:
14-
- '3.9'
1514
- '3.10'
1615
- '3.11'
1716
- '3.12'

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
repos:
3-
- repo: https://github.com/psf/black
4-
rev: 25.1.0
3+
- repo: https://github.com/psf/black-pre-commit-mirror
4+
rev: 25.12.0
55
hooks:
66
- id: black
77
args: [--target-version=py35]
88
- repo: https://github.com/PyCQA/flake8
9-
rev: 7.2.0
9+
rev: 7.3.0
1010
hooks:
1111
- id: flake8
1212
args: [

0 commit comments

Comments
 (0)