Skip to content

Commit

Permalink
Merge pull request #457 from jhonabreul/bug-python-312
Browse files Browse the repository at this point in the history
Python 3.12 support tweaks
  • Loading branch information
jhonabreul committed May 7, 2024
2 parents 18642f6 + 6f7c5ab commit 1e97df5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04, macos-12, macos-11, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
-e .

wheel
pytest==7.1.2
pyfakefs==4.6.3
responses==0.21.0
pytest>=7.1.2,<8
pyfakefs>=5.4.1,<6
responses~=0.21
lxml-stubs==0.4.0
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ def get_stubs_version_range() -> str:
"lxml>=4.9.0",
"maskpass>=0.3.6",
"joblib>=1.1.0",
"wrapt~=1.14.1",
"setuptools",
f"quantconnect-stubs{get_stubs_version_range()}",
"cryptography~=41.0.4"
"cryptography>=41.0.4,<43.0.0",
]

setup(
Expand Down Expand Up @@ -90,7 +89,8 @@ def get_stubs_version_range() -> str:
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
],
project_urls={
"Documentation": "https://www.lean.io/docs/v2/lean-cli/key-concepts/getting-started",
Expand Down

0 comments on commit 1e97df5

Please sign in to comment.