Skip to content

Commit

Permalink
Merge pull request #1153 from jookies/0.11.0
Browse files Browse the repository at this point in the history
py3.7 removed as min. python version
  • Loading branch information
farirat authored Nov 10, 2023
2 parents 4c0249a + 948dc6a commit 2ed4a3e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- 6379:6379
strategy:
matrix:
python: [3.7, 3.9, '3.10', 3.11, 3.12]
python: [3.8, 3.9, '3.10', 3.11, 3.12]
steps:
- uses: actions/checkout@v2
- name: Install os dependencies
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-alpine
FROM python:3.11-alpine

MAINTAINER Jookies LTD <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.restapi.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-alpine
FROM python:3.11-alpine

MAINTAINER Jookies LTD <[email protected]>

Expand Down
4 changes: 2 additions & 2 deletions nfpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ scripts:
overrides:
deb:
depends:
- python3 (>= 3.7)
- python3 (>= 3.8)
- adduser
- python3-twisted
- python3-dateutil
Expand All @@ -108,7 +108,7 @@ overrides:
rpm:
depends:
- epel-release
- python3 (>= 3.7)
- python3 (>= 3.8)
- python3-twisted
- python3-dateutil
- python3-pyparsing
Expand Down
3 changes: 3 additions & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ sphinx>=1.1.0
pylint
coverage
coveralls

# Sphinx theme
furo~=2023.9.10
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
pyasn1~=0.4.8
pyasn1~=0.5.0

# @TODO: Upgrade on dependabot issue
# https://github.com/jookies/jasmin/security/dependabot/19
Twisted~=23.10.0

treq~=22.1.0
pyparsing~=2.4.7
python-dateutil~=2.8.1
service_identity~=18.1.0
treq~=23.11.0
pyparsing~=3.1.1
python-dateutil~=2.8.2
service_identity~=23.1.0
lockfile~=0.12.2

falcon~=2.0.0
falcon~=3.1.1
txredisapi~=1.4.7
tabulate~=0.8.7

Expand All @@ -25,8 +25,8 @@ cryptography~=41.0.5
pyopenssl~=23.3.0

# Added in 0.9rc16:
celery>=4.0.0
redis~=3.4.1
celery~=5.3.5
redis~=5.0.1

# Upgraded on dependabot issue
# https://github.com/jookies/jasmin/security/dependabot/14
Expand All @@ -36,4 +36,4 @@ requests~=2.31.0
python-mimeparse~=1.6.0

# For /metrics (prometheus exporter)
prometheus-client~=0.14.1
prometheus-client~=0.18.0

0 comments on commit 2ed4a3e

Please sign in to comment.