Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix build problems with updated uv install on macos (#141)

authored by

hailey and committed by
GitHub
5beafe26 6bbc9a93

+93 -19
+6 -4
pyproject.toml
··· 44 44 "graphviz==0.20", 45 45 "greenlet", 46 46 "grpc-google-iam-v1==0.14.2", 47 - "grpcio==1.49.1; platform_machine == 'x86_64'", # Normal dependency for production 48 - "grpcio==1.53.*; platform_machine == 'aarch64'", # Only install on ARM64 architecture for local development on MacOS 47 + "grpcio==1.49.1; platform_machine == 'x86_64'", 48 + "grpcio==1.53.*; platform_machine != 'x86_64'", 49 49 "grpcio-health-checking==1.44.0", 50 50 "grpcio-reflection==1.44.0", 51 - "grpcio-status==1.49.1", 52 - "grpcio-tools==1.49.1", 51 + "grpcio-status==1.49.1; platform_machine == 'x86_64'", 52 + "grpcio-status==1.53.*; platform_machine != 'x86_64'", 53 + "grpcio-tools==1.49.1; platform_machine == 'x86_64'", 54 + "grpcio-tools==1.53.*; platform_machine != 'x86_64'", 53 55 "gunicorn", 54 56 "hash-ring", 55 57 "httplib2==0.22.0",
+87 -15
uv.lock
··· 69 69 { name = "graphviz", specifier = "==0.20" }, 70 70 { name = "greenlet", git = "https://github.com/discord/greenlet.git?rev=a75d78f1547c74a81134644a179467525a255466" }, 71 71 { name = "grpc-google-iam-v1", specifier = "==0.14.2" }, 72 - { name = "grpcio", marker = "platform_machine == 'aarch64'", specifier = "==1.53.*" }, 72 + { name = "grpcio", marker = "platform_machine != 'x86_64'", specifier = "==1.53.*" }, 73 73 { name = "grpcio", marker = "platform_machine == 'x86_64'", specifier = "==1.49.1" }, 74 74 { name = "grpcio-health-checking", specifier = "==1.44.0" }, 75 75 { name = "grpcio-reflection", specifier = "==1.44.0" }, 76 - { name = "grpcio-status", specifier = "==1.49.1" }, 77 - { name = "grpcio-tools", specifier = "==1.49.1" }, 76 + { name = "grpcio-status", marker = "platform_machine != 'x86_64'", specifier = "==1.53.*" }, 77 + { name = "grpcio-status", marker = "platform_machine == 'x86_64'", specifier = "==1.49.1" }, 78 + { name = "grpcio-tools", marker = "platform_machine != 'x86_64'", specifier = "==1.53.*" }, 79 + { name = "grpcio-tools", marker = "platform_machine == 'x86_64'", specifier = "==1.49.1" }, 78 80 { name = "gunicorn", git = "https://github.com/discord/gunicorn.git?rev=979efdcb918daa536d8923668241c6e6bf1edb58" }, 79 81 { name = "hash-ring", url = "https://storage.googleapis.com/discord-devops/hash_ring-src-b4b56bc93053881b68b829ee9d1a4871b4aee592.zip" }, 80 82 { name = "httplib2", specifier = "==0.22.0" }, ··· 696 698 grpc = [ 697 699 { name = "grpcio", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 698 700 { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 699 - { name = "grpcio-status" }, 701 + { name = "grpcio-status", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 702 + { name = "grpcio-status", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 700 703 ] 701 704 702 705 [[package]] ··· 859 862 { name = "grpc-google-iam-v1" }, 860 863 { name = "grpcio", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 861 864 { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 862 - { name = "grpcio-status" }, 865 + { name = "grpcio-status", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 866 + { name = "grpcio-status", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 863 867 { name = "proto-plus" }, 864 868 { name = "protobuf" }, 865 869 ] ··· 1069 1073 name = "grpcio-status" 1070 1074 version = "1.49.1" 1071 1075 source = { registry = "https://pypi.org/simple" } 1076 + resolution-markers = [ 1077 + "python_full_version >= '4' and platform_machine == 'x86_64'", 1078 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine == 'x86_64'", 1079 + "python_full_version == '3.13.*' and platform_machine == 'x86_64'", 1080 + "python_full_version == '3.12.*' and platform_machine == 'x86_64'", 1081 + "python_full_version < '3.12' and platform_machine == 'x86_64'", 1082 + ] 1072 1083 dependencies = [ 1073 - { name = "googleapis-common-protos" }, 1084 + { name = "googleapis-common-protos", marker = "platform_machine == 'x86_64'" }, 1074 1085 { name = "grpcio", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 1075 - { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 1076 - { name = "protobuf" }, 1086 + { name = "protobuf", marker = "platform_machine == 'x86_64'" }, 1077 1087 ] 1078 1088 sdist = { url = "https://files.pythonhosted.org/packages/19/99/7cd6af0c6da3084fa39818af3e3de1f4ca21127004e87f39a2affe290521/grpcio-status-1.49.1.tar.gz", hash = "sha256:658f48dc146ee0c7b6eebd302d74e0d45c00727c20035ff51d68750dbaccf5d9", size = 13505, upload-time = "2022-09-22T03:02:56.074Z" } 1079 1089 wheels = [ ··· 1081 1091 ] 1082 1092 1083 1093 [[package]] 1094 + name = "grpcio-status" 1095 + version = "1.53.2" 1096 + source = { registry = "https://pypi.org/simple" } 1097 + resolution-markers = [ 1098 + "python_full_version >= '4' and platform_machine == 'aarch64'", 1099 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine == 'aarch64'", 1100 + "python_full_version == '3.13.*' and platform_machine == 'aarch64'", 1101 + "python_full_version == '3.12.*' and platform_machine == 'aarch64'", 1102 + "python_full_version < '3.12' and platform_machine == 'aarch64'", 1103 + "python_full_version >= '4' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1104 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1105 + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1106 + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1107 + "python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1108 + ] 1109 + dependencies = [ 1110 + { name = "googleapis-common-protos", marker = "platform_machine != 'x86_64'" }, 1111 + { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 1112 + { name = "protobuf", marker = "platform_machine != 'x86_64'" }, 1113 + ] 1114 + sdist = { url = "https://files.pythonhosted.org/packages/45/6c/ed089e2b0d9215a1405de8790b2d6593780690d2732e0c208da27dfd86c4/grpcio-status-1.53.2.tar.gz", hash = "sha256:9a0823b99218424f012f59f6e9d17e8f569a67f0ca47cbca27dbf3bdf72c2248", size = 13505, upload-time = "2023-08-02T16:55:34.192Z" } 1115 + wheels = [ 1116 + { url = "https://files.pythonhosted.org/packages/fb/c0/8ee53675cb1aecaa7fcbc9bea6575cb8c19a21dd0ce80fe6e5edb04426f4/grpcio_status-1.53.2-py3-none-any.whl", hash = "sha256:a9642ee829d84bd617ede9c10ff77b9082cc0cb14356b1474b169da50f7db61e", size = 5091, upload-time = "2023-08-02T16:53:28.611Z" }, 1117 + ] 1118 + 1119 + [[package]] 1084 1120 name = "grpcio-tools" 1085 1121 version = "1.49.1" 1086 1122 source = { registry = "https://pypi.org/simple" } 1123 + resolution-markers = [ 1124 + "python_full_version >= '4' and platform_machine == 'x86_64'", 1125 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine == 'x86_64'", 1126 + "python_full_version == '3.13.*' and platform_machine == 'x86_64'", 1127 + "python_full_version == '3.12.*' and platform_machine == 'x86_64'", 1128 + "python_full_version < '3.12' and platform_machine == 'x86_64'", 1129 + ] 1087 1130 dependencies = [ 1088 1131 { name = "grpcio", version = "1.49.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64'" }, 1089 - { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 1090 - { name = "protobuf" }, 1091 - { name = "setuptools" }, 1132 + { name = "protobuf", marker = "platform_machine == 'x86_64'" }, 1133 + { name = "setuptools", marker = "platform_machine == 'x86_64'" }, 1092 1134 ] 1093 1135 sdist = { url = "https://files.pythonhosted.org/packages/6c/e4/3416d25aebc4477141a491fae2c9494c5e0437a706c59103a936aac7d072/grpcio-tools-1.49.1.tar.gz", hash = "sha256:84cc64e5b46bad43d5d7bd2fd772b656eba0366961187a847e908e2cb735db91", size = 2252679, upload-time = "2022-09-22T03:03:00.279Z" } 1094 1136 wheels = [ 1095 - { url = "https://files.pythonhosted.org/packages/e4/c1/ba298fe650b67c9e31a7ad88b2fe1d8d22ff2c6a9e131604054835397dfc/grpcio_tools-1.49.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:9e5c13809ab2f245398e8446c4c3b399a62d591db651e46806cccf52a700452e", size = 36912892, upload-time = "2022-09-22T03:00:51.237Z" }, 1096 1137 { url = "https://files.pythonhosted.org/packages/9c/8b/a45a39bf7d1c4956d48179831e4da88c3f6ee14dbdcb273e575bbeb7de20/grpcio_tools-1.49.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:ab3d0ee9623720ee585fdf3753b3755d3144a4a8ae35bca8e3655fa2f41056be", size = 2025040, upload-time = "2022-09-22T03:00:55.219Z" }, 1097 - { url = "https://files.pythonhosted.org/packages/38/53/63174ffb57e95f32432035ae4d706963e6b5232faa1ef3563fe62aed7fe2/grpcio_tools-1.49.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ba87e3512bc91d78bf9febcfb522eadda171d2d4ddaf886066b0f01aa4929ad", size = 2513622, upload-time = "2022-09-22T03:00:57.304Z" }, 1098 1138 { url = "https://files.pythonhosted.org/packages/6d/7f/89dc6036b91f8cbada98b06801ac2f5db60885000feaf88f9d7cabe665b7/grpcio_tools-1.49.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e13b3643e7577a3ec13b79689eb4d7548890b1e104c04b9ed6557a3c3dd452", size = 2370982, upload-time = "2022-09-22T03:00:59.807Z" }, 1099 - { url = "https://files.pythonhosted.org/packages/f4/65/5d95b318063b6ff023fdd6d233e91f177afac3018fffffa35ec08bcc4178/grpcio_tools-1.49.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:324f67d9cb4b7058b6ce45352fb64c20cc1fa04c34d97ad44772cfe6a4ae0cf5", size = 2960418, upload-time = "2022-09-22T03:01:02.611Z" }, 1100 1139 { url = "https://files.pythonhosted.org/packages/01/98/4730bfff6bcd3163db8c3d70689e19a1a5f419152316edfc1f13ff06a5d7/grpcio_tools-1.49.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a64bab81b220c50033f584f57978ebbea575f09c1ccee765cd5c462177988098", size = 2731915, upload-time = "2022-09-22T03:01:05.44Z" }, 1101 - { url = "https://files.pythonhosted.org/packages/e0/12/337b3f90f0eaa0b5998134c6f97bbacc89639c371f1e07e5fd2e51331316/grpcio_tools-1.49.1-cp311-cp311-win32.whl", hash = "sha256:f632d376f92f23e5931697a3acf1b38df7eb719774213d93c52e02acd2d529ac", size = 1553171, upload-time = "2022-09-22T03:01:08.287Z" }, 1102 1140 { url = "https://files.pythonhosted.org/packages/1a/14/9f61820a13429c3719741f0810ed4a055c363f84d528c8f957a72605ce86/grpcio_tools-1.49.1-cp311-cp311-win_amd64.whl", hash = "sha256:28ff2b978d9509474928b9c096a0cce4eaa9c8f7046136aee1545f6211ed8126", size = 1844039, upload-time = "2022-09-22T03:01:10.391Z" }, 1141 + ] 1142 + 1143 + [[package]] 1144 + name = "grpcio-tools" 1145 + version = "1.53.2" 1146 + source = { registry = "https://pypi.org/simple" } 1147 + resolution-markers = [ 1148 + "python_full_version >= '4' and platform_machine == 'aarch64'", 1149 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine == 'aarch64'", 1150 + "python_full_version == '3.13.*' and platform_machine == 'aarch64'", 1151 + "python_full_version == '3.12.*' and platform_machine == 'aarch64'", 1152 + "python_full_version < '3.12' and platform_machine == 'aarch64'", 1153 + "python_full_version >= '4' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1154 + "python_full_version >= '3.14' and python_full_version < '4' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1155 + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1156 + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1157 + "python_full_version < '3.12' and platform_machine != 'aarch64' and platform_machine != 'x86_64'", 1158 + ] 1159 + dependencies = [ 1160 + { name = "grpcio", version = "1.53.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'x86_64'" }, 1161 + { name = "protobuf", marker = "platform_machine != 'x86_64'" }, 1162 + { name = "setuptools", marker = "platform_machine != 'x86_64'" }, 1163 + ] 1164 + sdist = { url = "https://files.pythonhosted.org/packages/80/4a/d176f59e4b080f8bcd1242ca9bfa9d1a77a9ef1620725eef846f112b8a99/grpcio-tools-1.53.2.tar.gz", hash = "sha256:1b10f95d1f4af2b9d63c9beccf386b3a5e1a92f14b3f64a9a8385b6ba091e0dc", size = 2257313, upload-time = "2023-08-02T16:55:36.975Z" } 1165 + wheels = [ 1166 + { url = "https://files.pythonhosted.org/packages/43/8f/ee91cf09f72bf86e4784e8f030425d789e6984a8f7882fdef77d53dda8d9/grpcio_tools-1.53.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:968c94cb210da93d02c3d41605fc3400cdbd8e30e5ef5910638570a6d9b1be1d", size = 37001525, upload-time = "2023-08-02T16:54:00.483Z" }, 1167 + { url = "https://files.pythonhosted.org/packages/a2/d1/e85a0777d43aed5171be62b1f40ec9bf71e842ea41b94a84a87c404160cb/grpcio_tools-1.53.2-cp311-cp311-macosx_10_10_universal2.whl", hash = "sha256:a71e2a881eb8e821b6f5eeab2ee450b56597000ec34bfcd0c35b666ad7e64eb9", size = 3881176, upload-time = "2023-08-02T16:54:03.328Z" }, 1168 + { url = "https://files.pythonhosted.org/packages/3f/33/01294f84c413e05a5d13c5648b883ecd44f5edacf9f989733cf2207b35ac/grpcio_tools-1.53.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:621e6aa0ee0ca6d24cd0dc0a3ea4e8dd585ee9a7c665f0b5247a08032d89ac9f", size = 2043712, upload-time = "2023-08-02T16:54:05.794Z" }, 1169 + { url = "https://files.pythonhosted.org/packages/70/78/10f3decc485435efad896d1851bf0b37c58764760124b85084163cd316a3/grpcio_tools-1.53.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f073ee3d1088d54fd1da5df2f39ae8767397a6e60baaabbf22525e5dc86b759c", size = 2521670, upload-time = "2023-08-02T16:54:08.229Z" }, 1170 + { url = "https://files.pythonhosted.org/packages/be/99/c008310b54848e1220b1c919a6a741347795873d304ba73cbc5cf1da5edf/grpcio_tools-1.53.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:556f6997fe369a6cfd230335c46cb89d5ac2be65c093b25b8a0e9bfee76cb705", size = 2375360, upload-time = "2023-08-02T16:54:11.017Z" }, 1171 + { url = "https://files.pythonhosted.org/packages/9b/e5/5ed9acd22b9ea5aa7c29fca91d8e5e65e12f2633114a9da88c5eefc62a2a/grpcio_tools-1.53.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:049b16c36c3b0e9e52aa35dec6655000c97f5a26215322804d4149c5690997e4", size = 2970806, upload-time = "2023-08-02T16:54:13.965Z" }, 1172 + { url = "https://files.pythonhosted.org/packages/17/8a/293d81ca22c9dd981a033085dd8492c27ad79c4c675a298112772e21b05e/grpcio_tools-1.53.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8ba8cdc56b713e6b27b2f5777e449b4617b549af6ab548aaf265eeda12a4ac6f", size = 2733958, upload-time = "2023-08-02T16:54:18.111Z" }, 1173 + { url = "https://files.pythonhosted.org/packages/4b/f5/5e10e0657b82cd46cdc3dbfae8d47fdc424e8185fc1444948798276ea06e/grpcio_tools-1.53.2-cp311-cp311-win32.whl", hash = "sha256:f1bb5564e7dec518b163761771372a010514c1845cc8e96b6e84af3cac4fd864", size = 1427771, upload-time = "2023-08-02T16:54:21.412Z" }, 1174 + { url = "https://files.pythonhosted.org/packages/17/f0/137600746a7223a0e8067d2c8daa8d04bc5809fccb45761b0f9beb4b8d64/grpcio_tools-1.53.2-cp311-cp311-win_amd64.whl", hash = "sha256:c57cd3d0ef5d2ac8cc0ffc7b9226e85364adf50e91aaf3c34589d15e574a7215", size = 1696916, upload-time = "2023-08-02T16:54:23.006Z" }, 1103 1175 ] 1104 1176 1105 1177 [[package]]