Skip to content

Commit

Permalink
Abandon old python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
theotherbjorn committed Jan 1, 2025
1 parent 1023a59 commit 997978e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:

strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
os: [ubuntu-latest]
include:
- python-version: '3.9'
- python-version: '3.13'
os: windows-latest
# macos is just waay too slow...
# - python-version: '3.9'
# - python-version: '3.13'
# os: macos-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion pydeps/depgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ def __eq__(self, other):


class Graph:
def __init__(self, vertices: list[GraphNode], edges: list[tuple[GraphNode, GraphNode]]):
# def __init__(self, vertices: list[GraphNode], edges: list[tuple[GraphNode, GraphNode]]):
def __init__(self, vertices: list, edges: list):
self.V = vertices
for i, v in enumerate(vertices):
v.index = i
Expand Down

0 comments on commit 997978e

Please sign in to comment.