Skip to content

Commit

Permalink
fix capitalization of Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Apr 12, 2024
1 parent f541beb commit ddeb392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ classifiers = [
]
dependencies = [
# install `psycopg2` on linux (assumed production)
'psycopg2>=2.9,<3.0; platform_system == "linux"',
'psycopg2>=2.9,<3.0; platform_system == "Linux"',
# install `psycopg2-binary` on macos/windows (assumed development)
'psycopg2-binary>=2.9,<3.0; platform_system != "linux"',
'psycopg2-binary>=2.9,<3.0; platform_system != "Linux"',
"dbt-adapters>=0.1.0a1,<2.0",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0a1",
Expand Down

0 comments on commit ddeb392

Please sign in to comment.