Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
335c809
Merge pull request #2 from PyPortfolio/main
tschm Nov 15, 2025
11e0d80
Merge branch 'PyPortfolio:main' into main
tschm Nov 15, 2025
7814ef9
Create renovate.json for automated updates
tschm Nov 15, 2025
3600fa1
fix(deps): update dependency plotly to v6
renovate[bot] Nov 15, 2025
d8b8958
Merge pull request #4
tschm Nov 15, 2025
57da33d
Revert merge commit d8b8958e1035a9cf4778b9605d3836661c03d4a8
tschm Nov 15, 2025
7fb078a
Merge branch 'PyPortfolio:main' into main
tschm Nov 16, 2025
80fb252
Delete REVERT_COMMIT.md
tschm Nov 16, 2025
5038d93
chore(deps): update dependency python to 3.14 (#5)
renovate[bot] Nov 18, 2025
29ecda3
Merge branch 'PyPortfolio:main' into main
tschm Nov 25, 2025
de1ced3
Enable fork processing in Renovate config
tschm Nov 26, 2025
0650760
action now without installing task
tschm Nov 26, 2025
19b34f3
action now without installing task
tschm Nov 26, 2025
336ffa5
action now without installing task
tschm Nov 26, 2025
9f2bb0e
action now without installing task
tschm Nov 26, 2025
1524028
action now without installing task
tschm Nov 26, 2025
4b24b2a
action now without installing task
tschm Nov 26, 2025
b2c9e1d
chore(deps): update actions/checkout action to v6
renovate[bot] Nov 26, 2025
c1eb1eb
Merge pull request #7 from tschm/renovate/actions-checkout-6.x
tschm Nov 26, 2025
da8e914
Merge branch 'PyPortfolio:main' into main
tschm Nov 26, 2025
6fc1b55
Merge branch 'PyPortfolio:main' into main
tschm Nov 27, 2025
8baad98
chore(deps): update github artifact actions
renovate[bot] Nov 27, 2025
a10ab75
Delete renovate.json
tschm Nov 27, 2025
4d857eb
Delete pyproject.toml
tschm Nov 27, 2025
6060680
Create pyproject.toml
tschm Nov 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'

- name: install pre-commit
run: python3 -m pip install pre-commit

- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
fail-fast: false # to not fail all combinations if just one fails

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
fail-fast: false # to not fail all combinations if just one fails

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
python-version: ["3.12"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
python -m build --wheel --sdist --outdir wheelhouse

- name: Store wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels
path: wheelhouse/*
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
id-token: write

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: wheels
path: wheelhouse
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ dependencies = [
#
all_extras = [
"matplotlib>=3.2.0",
"plotly>=5.0.0,<6",
"ecos>=2.0.14,<2.1",
"plotly>=5.0.0,<7",
"cvxopt; python_version < '3.14'",
Expand Down