Skip to content

Commit ba4fcde

Browse files
authored
Merge branch 'ByteInternet:master' into master
2 parents 97357f1 + 249c38d commit ba4fcde

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ on:
55

66
jobs:
77
test:
8-
runs-on: ubuntu-latest
8+
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
99
strategy:
1010
matrix:
1111
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
12+
include:
13+
- python-version: '3.7'
14+
os: 'ubuntu-22.04'
1215

1316
steps:
1417
- uses: actions/checkout@v3
@@ -17,6 +20,7 @@ jobs:
1720
python-version: ${{ matrix.python-version }}
1821
- name: Install dependencies
1922
run: |
23+
sudo apt update
2024
sudo apt install libgirepository1.0-dev -y
2125
pip install -r requirements.txt
2226
pip install tox-gh-actions

debian/changelog

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nginx-config-reloader (20240524.073029) UNRELEASED; urgency=medium
1+
nginx-config-reloader (20250116.142631) UNRELEASED; urgency=medium
22

33
[ Rick van de Loo ]
44
* add dh-python to cow dep
@@ -75,7 +75,10 @@ nginx-config-reloader (20240524.073029) UNRELEASED; urgency=medium
7575
* reloader: Do not apply config if target dir is unmounted
7676
* debian/service: Start after remote-fs.target
7777

78-
-- Hypernode team <[email protected]> Fri, 24 May 2024 07:30:30 +0000
78+
[ Jonathan ]
79+
* Fix CI to support py 3.7 again (#63)
80+
81+
-- Hypernode team <[email protected]> Thu, 16 Jan 2025 14:26:31 +0000
7982

8083
nginx-config-reloader (20191127.113351) xenial; urgency=medium
8184

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="nginx_config_reloader",
5-
version="20240524.073029",
5+
version="20250116.142631",
66
packages=find_packages(exclude=["test*"]),
77
url="https://github.com/ByteInternet/nginx_config_reloader",
88
license="",

0 commit comments

Comments
 (0)