Skip to content

Commit f42b8aa

Browse files
authored
Merge pull request #69 from NREL/pp/python_313
Explicitly support python 3.13
2 parents c321aee + 00c6c99 commit f42b8aa

File tree

6 files changed

+586
-1285
lines changed

6 files changed

+586
-1285
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v4
2020
with:
21-
python-version: '3.12'
21+
python-version: 3.13
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip

.github/workflows/publish_to_pypi.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ jobs:
2121
locked: true
2222
cache: true
2323

24-
- name: Build a binary wheel and a source tarball
25-
run: pixi run -e build build-wheels
26-
27-
- name: Check distribution files
28-
run: pixi run -e build check-wheels
29-
3024
- name: Build and publish
3125
env:
3226
TWINE_USERNAME: __token__

.github/workflows/pull_request_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: [3.12]
12+
python-version: [3.13]
1313
include:
14+
- os: ubuntu-latest
15+
python-version: 3.12
1416
- os: ubuntu-latest
1517
python-version: 3.11
1618
- os: ubuntu-latest

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ package/environment manager.
5555
- Using https: :code:`git clone https://github.com/NREL/gaps.git`
5656

5757
2. Create and activate the ``gaps`` environment and install the package:
58-
1) Create a conda env: ``conda create -n gaps python=3.12``
58+
1) Create a conda env: ``conda create -n gaps python=3.13``
5959
2) Activate the newly-created conda env: ``conda activate gaps``
6060
3) Change directories into the repository: ``cd gaps``
6161
4) Prior to running ``pip`` below, make sure the branch is correct (install from main!): ``git branch -vv``

0 commit comments

Comments
 (0)