diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 6b8eb9c..63da633 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -10,7 +10,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.6] + python-version: [3.7] os: [ubuntu-latest] steps: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b788b5..7d2a012 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/CHANGES.rst b/CHANGES.rst index b8b76da..24609d0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 ------------- diff --git a/cicero/version.py b/cicero/version.py index 788da1f..fe404ae 100644 --- a/cicero/version.py +++ b/cicero/version.py @@ -1 +1 @@ -__version__ = "0.2.4" +__version__ = "0.2.5" diff --git a/pyproject.toml b/pyproject.toml index 763af73..fe2836b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]