Skip to content

Commit 0ef5105

Browse files
authored
Merge pull request #405 from jdebacker/new_law
Update default parameters for changes in law
2 parents 99b8624 + 076024c commit 0ef5105

23 files changed

+679
-754
lines changed

.github/workflows/build_and_test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Package and Test Source Code [Python 3.10, 3.11, 3.12]
1+
name: Build Package and Test Source Code [Python 3.11, 3.12, 3.13]
22

33
on: [push, pull_request]
44

@@ -8,14 +8,18 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ["3.10", "3.11", "3.12"]
11+
python-version: ["3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616
with:
1717
persist-credentials: false
1818

19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
with:
22+
persist-credentials: false
1923
- name: Setup Miniconda using Python ${{ matrix.python-version }}
2024
uses: conda-incubator/setup-miniconda@v3
2125
with:

.github/workflows/check_jupyterbook.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,12 @@ jobs:
1111
persist-credentials: false
1212

1313
- name: Setup Miniconda
14-
uses: conda-incubator/setup-miniconda@v2
14+
uses: conda-incubator/setup-miniconda@v3
1515
with:
1616
miniconda-version: "latest"
17-
auto-update-conda: true
1817
activate-environment: ccc-dev
1918
environment-file: environment.yml
20-
python-version: 3.12
19+
python-version: "3.13"
2120
auto-activate-base: false
2221

2322
- name: Build # Build Jupyter Book

.github/workflows/create_pip_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.12"
19+
python-version: "3.13"
2020
- name: Build package
2121
run: make pip-package
2222
- name: Publish a Python distribution to PyPI

.github/workflows/deploy_jupyterbook.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ jobs:
1212
uses: actions/checkout@v4
1313
with:
1414
persist-credentials: false
15-
1615
- name: Setup Miniconda
1716
uses: conda-incubator/setup-miniconda@v3
1817
with:
1918
miniconda-version: "latest"
20-
auto-update-conda: true
2119
activate-environment: ccc-dev
2220
environment-file: environment.yml
23-
python-version: 3.12
21+
python-version: "3.13"
2422
auto-activate-base: false
2523

2624
- name: Build # Build Jupyter Book

.readthedocs.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

ccc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from ccc.data import *
77
from ccc.calculator import *
88

9-
__version__ = "2.0.0"
9+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)