Skip to content

Commit a898833

Browse files
committed
Updated to Python 3.13
1 parent 2bce0e5 commit a898833

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/run-golden-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: golden tests
33
on: [push, pull_request]
44

55
env:
6-
PYTHON_VERSION: 3.11
7-
6+
PYTHON_VERSION: 3.13
7+
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
steps:
11+
steps:
1212
- name: checkout repo content
1313
uses: actions/checkout@v4
1414
- name: setup python
@@ -20,7 +20,7 @@ jobs:
2020
pip install -r requirements.txt
2121
python setup.py install
2222
- name: Run tests
23-
run:
23+
run:
2424
python golden_tests/run_all_tests.py
2525
- name: Archive code coverage results
2626
uses: actions/upload-artifact@v4

.github/workflows/run-unit-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: unit test action
33
on: [push, pull_request]
44

55
env:
6-
PYTHON_VERSION: 3.11
6+
PYTHON_VERSION: 3.13
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
steps:
11+
steps:
1212
- name: checkout repo content
1313
uses: actions/checkout@v4
1414
- name: setup python
@@ -20,14 +20,14 @@ jobs:
2020
python -m pip install --upgrade pip
2121
pip install -r requirements.txt
2222
pip install -r requirements-dev.txt
23-
pip install pytest
24-
pip install -e .
23+
pip install pytest
24+
pip install -e .
2525
- name: show package is importable
26-
run: |
26+
run: |
2727
python -c "import financepy as fp"
2828
- name: list dependencies
29-
run: |
29+
run: |
3030
pip list
3131
- name: unit tests
32-
run: |
32+
run: |
3333
pytest -vv

0 commit comments

Comments
 (0)