Skip to content

Commit dbdc883

Browse files
committed
Merge branch 'release/v0.4.9'
2 parents 83632cb + 915107e commit dbdc883

File tree

16 files changed

+191
-113
lines changed

16 files changed

+191
-113
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 = 0.4.8
2+
current_version = 0.4.9
33
commit = False
44
tag = False
55
allow_dirty = False

.github/workflows/release.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ name: Create Release
99
jobs:
1010
build:
1111
name: Create GH Release and upload to PyPI
12-
runs-on: ubuntu-latest
12+
# problems with ubuntu 24.04
13+
# https://github.com/actions/setup-python/issues/1053
14+
runs-on: ubuntu-22.04
1315
permissions:
1416
contents: write
1517
steps:
1618
- name: Checkout code
17-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
1820
- name: Set up Python for PyPI Release
19-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v5
2022
with:
21-
python-version: '3.8'
23+
python-version: '3.11'
2224
- name: Install dependencies for PyPI Release
2325
run: |
2426
python -m pip install --upgrade pip

.github/workflows/tox.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ on:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-latest
17+
# problems with ubuntu 24.04
18+
# https://github.com/actions/setup-python/issues/1053
19+
runs-on: ubuntu-22.04
1820
# This is needed to enable host name resolution for the minio service from the tests
19-
#https://docs.github.com/en/actions/using-containerized-services/about-service-containers#mapping-docker-host-and-service-container-ports
21+
# https://docs.github.com/en/actions/using-containerized-services/about-service-containers#mapping-docker-host-and-service-container-ports
2022
# https://docs.github.com/en/actions/using-containerized-services/creating-redis-service-containers#running-jobs-in-containers
21-
container: python:3.8-slim-buster
23+
container: python:3.11
2224
services:
2325
remote-storage:
2426
image: bitnami/minio:latest
@@ -35,7 +37,7 @@ jobs:
3537
run: apt-get update -yq && apt-get -yq install pandoc git git-lfs rsync
3638
- name: Safe directory workaround
3739
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
38-
- uses: actions/checkout@v2.3.1
40+
- uses: actions/checkout@v4
3941
with:
4042
fetch-depth: 0
4143
lfs: true
@@ -51,11 +53,11 @@ jobs:
5153
git fetch origin develop:develop --update-head-ok
5254
git merge develop
5355
- name: Setup Python 3.8
54-
uses: actions/setup-python@v1
56+
uses: actions/setup-python@v5
5557
with:
56-
python-version: "3.8"
58+
python-version: "3.11"
5759
- name: Cache tox envs and pip packages
58-
uses: actions/cache@v2
60+
uses: actions/cache@v4
5961
with:
6062
path: |
6163
~/.cache/pip
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@ BUILD_DIR=$(dirname "$0")
4141
cd "${BUILD_DIR}/.." || (echo "Unknown error, could not find directory ${BUILD_DIR}" && exit 255)
4242
black --check .
4343
isort . --check --diff
44-
python build_scripts/run_pylint.py >>>(pylint-json2html -f jsonextended -o pylint.html)
4544
)

build_scripts/run_pylint.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

latest_release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Release Notes: 0.4.8
1+
# Release Notes: 0.4.9
22

33
## Bugfix release
44
- Fixed bugs in RemoteStorage related to name collisions and serialization.

public/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ <h1 style="margin-bottom:3cm;"> Welcome to the accsr project pages!</h1>
99
<ul>
1010
<li><a href="docs">Source Code Documentation</a> </li>
1111
<li><a href="coverage"> Latest coverage report</a> </li>
12-
<li><a href="pylint"> Latest pylint report</a> </li>
1312
</ul>
1413
</body>
1514
</html>

public/pylint/.gitignore

Whitespace-only changes.

requirements-docs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Sphinx~=4.1
1+
Sphinx==8.2.3
22
sphinxcontrib-websupport==1.2.4
33
sphinx_rtd_theme
44
nbsphinx

requirements-linting.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
pylint==2.11.1
21
astroid==2.8.6
32
anybadge==1.7.0
4-
pylint-json2html==0.3.0
53
black~=23.1.0
64
isort~=5.12.0

0 commit comments

Comments
 (0)