Skip to content

Commit

Permalink
Update Python version to 3.13 and add setuptools-rust dependency
Browse files Browse the repository at this point in the history
Related to Integuru-AI#17

Update dependencies and CI configuration to support Python 3.13.

* Update `pyproject.toml` to change the Python version requirement to `^3.13` and add `setuptools-rust` as a dependency.
* Update `.github/workflows/ci.yml` to set up Python 3.13 in the CI workflow.
* Update `README.md` to reflect the new Python version requirement and add a note to install `rust` and `setuptools-rust` in the setup section.
  • Loading branch information
vishwamartur committed Nov 22, 2024
1 parent d48148e commit 33c8948
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
python-version: 3.13

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ poetry run pytest
This repository includes a CI workflow using GitHub Actions. The workflow is defined in the `.github/workflows/ci.yml` file and is triggered on each push and pull request to the `main` branch. The workflow performs the following steps:

1. Checks out the code.
2. Sets up Python 3.12.
2. Sets up Python 3.13.
3. Installs dependencies using `poetry`.
4. Runs tests using `pytest`.

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["alanalanlu <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"
langchain-openai = "^0.2.0"
langchain-core = "^0.3.1"
langgraph = "^0.2.22"
Expand All @@ -17,6 +17,7 @@ playwright = "^1.47.0"
networkx = "^3.3"
matplotlib = "^3.9.2"
ipykernel = "^6.29.5"
setuptools-rust = "^1.5.2"

[tool.poetry.scripts]
integuru = "integuru.__main__:cli"
Expand Down

0 comments on commit 33c8948

Please sign in to comment.