Skip to content

Commit

Permalink
Add tzdata dependency on windows (#23415)
Browse files Browse the repository at this point in the history
## Summary & Motivation

## How I Tested These Changes

(cherry picked from commit a11dd7f)
  • Loading branch information
gibsondan authored and jmsanders committed Aug 5, 2024
1 parent 4f5d618 commit e8c5475
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,10 @@ def test_multi_op_selection_execution(
}


@pytest.mark.skipif(
_seven.IS_WINDOWS,
reason="Failure sequence manifests differently on windows",
)
def test_job_that_fails_run_worker(
instance: DagsterInstance,
workspace: WorkspaceRequestContext,
Expand Down
1 change: 1 addition & 0 deletions python_modules/dagster/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def get_version() -> str:
"tomli<3",
"tqdm<5",
"typing_extensions>=4.4.0,<5",
'tzdata; platform_system=="Windows"',
"structlog",
"sqlalchemy>=1.0,<3",
"toposort>=1.0",
Expand Down

0 comments on commit e8c5475

Please sign in to comment.