Skip to content

Commit

Permalink
Remove future dependency (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p authored Sep 4, 2023
1 parent 0f41aa0 commit ea4c9c0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/archlinux/pkgbuild/PKGBUILD.git
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ conflicts=('python-matrix-nio')
provides=('python-matrix-nio')
depends=('python' 'python-olm' 'python-h11' 'python-h2'
'python-jsonschema' 'python-logbook'
'python-peewee' 'python-atomicwrites' 'python-future'
'python-peewee' 'python-atomicwrites'
'python-pycryptodome' 'python-unpaddedbase64')
checkdepends=()
source=("$pkgbase-$pkgver.tar.gz")
Expand Down
2 changes: 1 addition & 1 deletion nio/crypto/sas.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
from builtins import bytes, super
from datetime import datetime, timedelta
from enum import Enum
from itertools import zip_longest
from typing import List, Optional, Tuple
from uuid import uuid4

import olm
from future.moves.itertools import zip_longest

from ..api import Api
from ..event_builders import ToDeviceMessage
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ packages = [

[tool.poetry.dependencies]
python = "^3.8.0"
future = "^0.18.2"
aiohttp = "^3.8.3"
aiofiles = "^23.1.0"
h11 = "^0.14.0"
Expand Down
1 change: 0 additions & 1 deletion rtd-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
future
peewee
aiohttp
h11
Expand Down

0 comments on commit ea4c9c0

Please sign in to comment.