Skip to content

Commit 1e97df5

Browse files
authored
Merge pull request #457 from jhonabreul/bug-python-312
Python 3.12 support tweaks
2 parents 18642f6 + 6f7c5ab commit 1e97df5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-22.04, ubuntu-20.04, macos-12, macos-11, windows-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- name: Checkout

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-e .
55

66
wheel
7-
pytest==7.1.2
8-
pyfakefs==4.6.3
9-
responses==0.21.0
7+
pytest>=7.1.2,<8
8+
pyfakefs>=5.4.1,<6
9+
responses~=0.21
1010
lxml-stubs==0.4.0

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,9 @@ def get_stubs_version_range() -> str:
5656
"lxml>=4.9.0",
5757
"maskpass>=0.3.6",
5858
"joblib>=1.1.0",
59-
"wrapt~=1.14.1",
6059
"setuptools",
6160
f"quantconnect-stubs{get_stubs_version_range()}",
62-
"cryptography~=41.0.4"
61+
"cryptography>=41.0.4,<43.0.0",
6362
]
6463

6564
setup(
@@ -90,7 +89,8 @@ def get_stubs_version_range() -> str:
9089
"Programming Language :: Python :: 3.8",
9190
"Programming Language :: Python :: 3.9",
9291
"Programming Language :: Python :: 3.10",
93-
"Programming Language :: Python :: 3.11"
92+
"Programming Language :: Python :: 3.11",
93+
"Programming Language :: Python :: 3.12"
9494
],
9595
project_urls={
9696
"Documentation": "https://www.lean.io/docs/v2/lean-cli/key-concepts/getting-started",

0 commit comments

Comments
 (0)