Skip to content

Commit

Permalink
Make packaging pip package version specific (#1527)
Browse files Browse the repository at this point in the history
Python3.6 doesn't support packaging 24
  • Loading branch information
DiegoTavares authored Oct 2, 2024
1 parent a3e9ccb commit c2904f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ grpcio-tools==1.48.2;python_version<"3.7"
grpcio==1.53.2;python_version>="3.7"
grpcio-tools==1.53.0;python_version>="3.7"
mock==2.0.0
packaging==24.1
packaging==20.9;python_version<"3.7"
packaging==24.1;python_version>="3.7"
psutil==5.9.8
pyfakefs==3.6;python_version<"3.7"
pyfakefs==5.2.3;python_version>="3.7"
Expand Down

0 comments on commit c2904f2

Please sign in to comment.