Skip to content

Commit 5f1bbd8

Browse files
author
Gal Ben David
committed
Add python 3.10 support
1 parent f8e38b2 commit 5f1bbd8

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: [3.7, 3.8, 3.9]
27+
python-version: ['3.7', '3.8', '3.9', '3.10']
2828
os: [ubuntu-latest , macos-latest, windows-latest]
2929
steps:
3030
- name: Checkout

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9]
11+
python-version: ['3.7', '3.8', '3.9', '3.10']
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
steps:
1414
- name: Checkout

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "PyDeduplines"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Gal Ben David <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66
description = "Python library for a duplicate lines removal written in Rust"
77
readme = "README.md"
88
repository = "https://github.com/intsights/PyDeduplines"
@@ -22,23 +22,24 @@ classifier = [
2222
"Programming Language :: Python :: 3.7",
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
2526
]
2627

2728
[lib]
2829
name = "pydeduplines"
2930
crate-type = ["cdylib"]
3031

3132
[dependencies.pyo3]
32-
version = "0.14.5"
33+
version = "0.15.1"
3334
features = ["extension-module"]
3435

3536
[dependencies]
3637
ahash = "0.7"
37-
memchr = "2"
3838
bytecount = {version = "0.6", features = ["runtime-dispatch-simd"]}
3939
crossbeam-deque = "0.8"
4040
crossbeam-utils = "0.8"
41-
parking_lot = "0.11"
41+
memchr = "2"
42+
parking_lot = "0.12"
4243

4344
[profile.release]
4445
lto = true

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ sdist-include = [
88
"Cargo.toml",
99
"pydeduplines",
1010
]
11-
strip = true
1211

1312
[tool.poetry]
1413
name = "PyDeduplines"
15-
version = "0.4.0"
14+
version = "0.5.0"
1615
authors = ["Gal Ben David <[email protected]>"]
1716
description = "Python library for a duplicate lines removal written in Rust"
1817
readme = "README.md"

0 commit comments

Comments
 (0)