Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5aa88de
first uv sync
i-am-sijia Jun 9, 2025
b817acc
explicitly set np.int64 dtype before calling pd set_index()
i-am-sijia Jun 9, 2025
e85794f
Add all dependencies from Conda environments
josiekre Jun 9, 2025
fc4cf01
Remove orca
josiekre Jun 9, 2025
5da66f4
Update release instructions for `uv`
josiekre Jun 9, 2025
bad9fc9
Remove `--no-default-groups` from `uv sync` instructions
josiekre Jun 9, 2025
f4d75fc
Trial updating Github Action to uv instead of conda
josiekre Jun 10, 2025
0e435ca
Bug fixes
josiekre Jun 13, 2025
ebd540b
Try downgrading sharrow
josiekre Jun 13, 2025
a24b2b6
change core test to windows runner
i-am-sijia Jun 16, 2025
1091674
use win for all core tests
i-am-sijia Jun 16, 2025
22699d0
index type mismatch
i-am-sijia Jun 16, 2025
407a804
formatting
i-am-sijia Jun 16, 2025
f375313
Merge pull request #16 from i-am-sijia/ga-fix
i-am-sijia Jun 16, 2025
cdbd087
unlock sharrow to 2.14
i-am-sijia Jun 16, 2025
27a962f
correct a typo
i-am-sijia Jun 16, 2025
9d1800d
Update Model Setup page in user guide
josiekre Jun 19, 2025
2e3fecd
Update Ways to Run the Model page
josiekre Jun 19, 2025
6f06df3
Remove duplicates
josiekre Jun 20, 2025
e17b860
Simplify pyproject.toml for github action and use only this group
josiekre Jun 20, 2025
fd09a6a
Update remainder of user guide docs
josiekre Jun 20, 2025
635d0a3
Update dev guide [makedocs]
josiekre Jun 20, 2025
e453f31
Update lockfile from changes to dependencies
josiekre Jun 21, 2025
d84090d
Remove conda from other github actions
josiekre Jun 21, 2025
cf5c683
Debug doc building [makedocs]
josiekre Jun 23, 2025
bcde0c5
Update install instructions [makedocs]
josiekre Jul 3, 2025
e26f61f
update installation instructions [makedocs]
i-am-sijia Jul 11, 2025
b701076
notes on uv options [makedocs]
i-am-sijia Jul 11, 2025
ede8c0d
address review comment
i-am-sijia Jul 21, 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
36 changes: 9 additions & 27 deletions .github/workflows/branch-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,39 +21,21 @@ jobs:
with:
fetch-depth: 0 # get all tags, lets setuptools_scm do its thing

- name: Setup Miniforge
uses: conda-incubator/setup-miniconda@v2
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
miniforge-version: latest
python-version: "3.10"
activate-environment: docbuild
auto-activate-base: false
auto-update-conda: false
version: "0.7.12"
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Set cache date for year and month
run: echo "DATE=$(date +'%Y%m')" >> $GITHUB_ENV

- uses: actions/cache@v3
- name: "Set up Python"
uses: actions/setup-python@v5
with:
path: /usr/share/miniconda3/envs/docbuild
key: linux-64-conda-${{ hashFiles('conda-environments/docbuild.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }}
id: cache

- name: Update environment
run: conda env update --verbose -n docbuild -f conda-environments/docbuild.yml
if: steps.cache.outputs.cache-hit != 'true'
python-version-file: ".python-version"

- name: Install activitysim
run: |
python -m pip install .

- name: Conda checkup
run: |
conda info -a
conda list
echo REPOSITORY ${{ github.repository }}
echo REF ${{ github.ref }}
echo REF_NAME ${{ github.ref_name }}
uv sync --locked --dev

- name: Build the docs
run: |
Expand Down
Loading
Loading