Skip to content

Commit 79d4a23

Browse files
authored
fix column name in regression test (Alt -> alt) (#18)
* fix column name in regression test (Alt -> alt) * ci test should test against ActivitySim/main, not a fixed version * pin pandas <3 * update lockfile
1 parent b2a101f commit 79d4a23

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,13 @@ jobs:
5151
fetch-depth: 0 # get all tags, lets setuptools_scm do its thing
5252

5353
# install ActivitySim, overriding the one in the workspace,
54-
# as the pre-installed one is the latest release but not the most up-to-date
54+
# as the pre-installed one is not necessarily the most up-to-date
5555
- name: Install ActivitySim
5656
run: |
5757
uv pip install --no-deps ./cloned/activitysim
5858
59+
# The next step is to run the tests, but now we need "--no-sync" to avoid
60+
# automatically reinstalling the overwritten version of ActivitySim
5961
- name: Test this implementation
6062
run: |
61-
uv run pytest ./test
63+
uv run --no-sync pytest ./test

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies = [
1010
"numba>=0.57",
1111
"numpy>=1.16.1,<1.26",
1212
"openmatrix>=0.3.5.0",
13-
"pandas>=2.1.0",
13+
"pandas>=2.1.0,<3",
1414
"pandera>=0.15,<0.18.1",
1515
"psutil>=4.1",
1616
"pydantic>=2.6",
-16.7 KB
Binary file not shown.
-17 KB
Binary file not shown.

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)