Skip to content

Commit e0d66e7

Browse files
Upgrade to python3.11
2 parents 5f1bbd8 + ddecc2b commit e0d66e7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
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', '3.10']
27+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
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', '3.10']
11+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
steps:
1414
- name: Checkout

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "PyDeduplines"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Gal Ben David <[email protected]>"]
55
edition = "2021"
66
description = "Python library for a duplicate lines removal written in Rust"
@@ -23,6 +23,7 @@ classifier = [
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2627
]
2728

2829
[lib]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sdist-include = [
1111

1212
[tool.poetry]
1313
name = "PyDeduplines"
14-
version = "0.5.0"
14+
version = "0.6.0"
1515
authors = ["Gal Ben David <[email protected]>"]
1616
description = "Python library for a duplicate lines removal written in Rust"
1717
readme = "README.md"

0 commit comments

Comments
 (0)