Skip to content

Commit

Permalink
Drop Python 3.6 support and add 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongronggg9 committed Oct 27, 2022
1 parent e5a8636 commit d4448f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/wheels.yml
Expand Up @@ -29,6 +29,7 @@ jobs:
CIBW_BEFORE_ALL_LINUX: "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y && yum install -y openssl-devel"
CIBW_ENVIRONMENT: 'PATH="$PATH:$HOME/.cargo/bin"'
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_SKIP: cp36-* *musllinux*

- uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
grammers-crypto = "0.3.0"
pyo3 = { version = "0.14.4", features = ["extension-module"] }
pyo3 = { version = "0.17.2", features = ["extension-module"] }

[lib]
name = "cryptg"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -42,11 +42,11 @@ def main(args):
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",

"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="telegram crypto cryptography mtproto aes",

Expand Down

0 comments on commit d4448f4

Please sign in to comment.