Skip to content

Commit

Permalink
make it run on Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed Jan 15, 2022
1 parent b10b949 commit bedab80
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6]
python-version: [3.7]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, "3.10"]
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,15 @@ Changelog
=========


Version 0.2.5
-------------

Released on 2022-01-15.

- Do not restrict requests and flask versions.
- Make it run on Python 3.10.


Version 0.2.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion cicero/version.py
@@ -1 +1 @@
__version__ = "0.2.4"
__version__ = "0.2.5"
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -8,8 +8,8 @@ author = "Radovan Bast"
author-email = "radovan.bast@uit.no"
home-page = "https://github.com/bast/cicero"
requires=[
"requests==2.21.0",
"flask==1.0.2",
"requests",
"flask",
]
description-file="README.rst"
classifiers = ["License :: OSI Approved :: GNU Affero General Public License v3"]
Expand Down

0 comments on commit bedab80

Please sign in to comment.