Skip to content

Commit bedab80

Browse files
committed
make it run on Python 3.10
1 parent b10b949 commit bedab80

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: [3.6]
13+
python-version: [3.7]
1414
os: [ubuntu-latest]
1515

1616
steps:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
python-version: [3.6, 3.7, 3.8, 3.9]
15+
python-version: [3.7, 3.8, 3.9, "3.10"]
1616
os: [ubuntu-latest, macOS-latest, windows-latest]
1717

1818
steps:

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Changelog
44
=========
55

66

7+
Version 0.2.5
8+
-------------
9+
10+
Released on 2022-01-15.
11+
12+
- Do not restrict requests and flask versions.
13+
- Make it run on Python 3.10.
14+
15+
716
Version 0.2.4
817
-------------
918

cicero/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.4"
1+
__version__ = "0.2.5"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ author = "Radovan Bast"
88
author-email = "radovan.bast@uit.no"
99
home-page = "https://github.com/bast/cicero"
1010
requires=[
11-
"requests==2.21.0",
12-
"flask==1.0.2",
11+
"requests",
12+
"flask",
1313
]
1414
description-file="README.rst"
1515
classifiers = ["License :: OSI Approved :: GNU Affero General Public License v3"]

0 commit comments

Comments
 (0)