Skip to content

Commit

Permalink
FIX: python version
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudocubic committed Feb 26, 2025
1 parent 6ce5cf5 commit 1046a04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- develop

env:
PYTHON_VERSION: '3.13'

jobs:
build-docs:
runs-on: ubuntu-latest
Expand All @@ -21,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '$PYTHON_VERSION'
- name: Install mdbtools
run: |
sudo apt-get update
Expand Down Expand Up @@ -91,7 +94,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '$PYTHON_VERSION'
- name: Install mdbtools
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = [{include = "ravens"}]
include = ["lib/iec61970cim17v40_iec61968cim13v13b_iec62325cim03v17b_CIM100.1.1.1_mgravens24v1.xmi", "lib/template.json"]

[tool.poetry.dependencies]
python = "^3.12, ^3.13"
python = ">=3.12, <3.14"
networkx = "^3.2"
pandas = "^2.1"
rdflib = "^7.0"
Expand Down

0 comments on commit 1046a04

Please sign in to comment.