Skip to content

Commit 45132f5

Browse files
authored
Switch to LF AI & Data mailing lists (#18401)
Replaces references to iree-discuss with iree-technical-discussion and introduces iree-announce.
1 parent 9cacbd6 commit 45132f5

File tree

14 files changed

+30
-19
lines changed

14 files changed

+30
-19
lines changed

.github/ISSUE_TEMPLATE/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ contact_links:
44
url: https://github.com/iree-org/iree/issues/new
55
about: If you know what you're doing (especially collaborators)
66
- name: 📧 Send an email to our mailing list
7-
url: https://groups.google.com/forum/#!forum/iree-discuss
8-
about: For announcements and asynchronous discussion
7+
url: https://lists.lfaidata.foundation/g/iree-technical-discussion
8+
about: For asynchronous discussion
99
- name: 🗣 Start a discussion on GitHub
1010
url: https://github.com/iree-org/iree/discussions
1111
about: An alternative platform for asynchronous discussion

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ To get started with contributing, please take a look at the
1111
bugs, and other work tracking
1212
* [IREE Discord server](https://discord.gg/wEWh6Z9nMU): Daily development
1313
discussions with the core team and collaborators
14-
* [iree-discuss email list](https://groups.google.com/forum/#!forum/iree-discuss):
15-
Announcements, general and low-priority discussion
14+
* [iree-technical-discussion email list](https://lists.lfaidata.foundation/g/iree-technical-discussion):
15+
General and low-priority discussion
1616

1717
## Community guidelines
1818

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ https://iree.dev/developers/general/github-actions/.
5252
bugs, and other work tracking
5353
* [IREE Discord server](https://discord.gg/wEWh6Z9nMU): Daily development
5454
discussions with the core team and collaborators
55-
* [iree-discuss email list](https://groups.google.com/forum/#!forum/iree-discuss):
55+
* (New) [iree-announce email list](https://lists.lfaidata.foundation/g/iree-announce):
56+
Announcements
57+
* (New) [iree-technical-discussion email list](https://lists.lfaidata.foundation/g/iree-technical-discussion):
58+
General and low-priority discussion
59+
* (Legacy) [iree-discuss email list](https://groups.google.com/forum/#!forum/iree-discuss):
5660
Announcements, general and low-priority discussion
5761

5862
#### Related Project Channels

compiler/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def find_git_submodule_revision(submodule_path):
418418
name=f"{custom_package_prefix}iree-compiler{custom_package_suffix}{PACKAGE_SUFFIX}",
419419
version=f"{PACKAGE_VERSION}",
420420
author="IREE Authors",
421-
author_email="iree-discuss@googlegroups.com",
421+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
422422
description="IREE Compiler API",
423423
long_description="",
424424
license="Apache-2.0",

docs/website/docs/developers/design-docs/design-roadmap.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ become much clearer when seeing where we want to go with the infrastructure we
77
are building (as opposed to where we currently are with our MVP slice). This
88
document is not meant to encompass the entire design of any individual feature
99
and if there's interest please say hi on the
10-
[iree-discuss](https://groups.google.com/forum/#!forum/iree-discuss) mailing
11-
list.
10+
[iree-technical-discussion](https://lists.lfaidata.foundation/g/iree-technical-discussion)
11+
mailing list.
1212

1313
[TOC]
1414

docs/website/docs/index.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,11 @@ using various languages.
186186
* :fontawesome-brands-discord:
187187
[IREE Discord server](https://discord.gg/wEWh6Z9nMU): Daily development
188188
discussions with the core team and collaborators
189-
* :fontawesome-solid-users: [iree-discuss email list](https://groups.google.com/forum/#!forum/iree-discuss):
189+
* :fontawesome-solid-bullhorn: (New) [iree-announce email list](https://lists.lfaidata.foundation/g/iree-announce):
190+
Announcements
191+
* :fontawesome-solid-envelope: (New) [iree-technical-discussion email list](https://lists.lfaidata.foundation/g/iree-technical-discussion):
192+
General and low-priority discussion
193+
* :fontawesome-solid-envelope: (Legacy) [iree-discuss email list](https://groups.google.com/forum/#!forum/iree-discuss):
190194
Announcements, general and low-priority discussion
191195

192196
## Roadmap

docs/website/mkdocs.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,12 @@ extra:
6363
- icon: fontawesome/brands/discord
6464
link: https://discord.gg/wEWh6Z9nMU
6565
name: IREE Discord Server
66-
- icon: fontawesome/solid/users
67-
link: https://groups.google.com/forum/#!forum/iree-discuss
68-
name: IREE Discuss Google Group
66+
- icon: fontawesome/solid/bullhorn
67+
link: https://lists.lfaidata.foundation/g/iree-announce
68+
name: IREE Announcement Mailing List
69+
- icon: fontawesome/solid/envelope
70+
link: https://lists.lfaidata.foundation/g/iree-technical-discussion
71+
name: IREE Technical Discussion Mailing List
6972

7073
status:
7174
new: Recently updated

integrations/pjrt/python_packages/iree_cpu_plugin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def build_default_configuration(self):
5555
name=f"iree-pjrt-plugin-cpu{iree_pjrt_setup.PACKAGE_SUFFIX}",
5656
version=f"{iree_pjrt_setup.PACKAGE_VERSION}",
5757
author="The IREE Team",
58-
author_email="iree-discuss@googlegroups.com",
58+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
5959
license="Apache-2.0",
6060
description="IREE PJRT Plugin for CPUs (generic)",
6161
long_description=README,

integrations/pjrt/python_packages/iree_cuda_plugin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_default_configuration(self):
5252
name=f"iree-pjrt-plugin-cuda{iree_pjrt_setup.PACKAGE_SUFFIX}",
5353
version=f"{iree_pjrt_setup.PACKAGE_VERSION}",
5454
author="The IREE Team",
55-
author_email="iree-discuss@googlegroups.com",
55+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
5656
license="Apache-2.0",
5757
description="IREE PJRT Plugin for CUDA (generic)",
5858
long_description=README,

integrations/pjrt/python_packages/iree_rocm_plugin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_default_configuration(self):
5252
name=f"iree-pjrt-plugin-rocm{iree_pjrt_setup.PACKAGE_SUFFIX}",
5353
version=f"{iree_pjrt_setup.PACKAGE_VERSION}",
5454
author="The IREE Team",
55-
author_email="iree-discuss@googlegroups.com",
55+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
5656
license="Apache-2.0",
5757
description="IREE PJRT Plugin for ROCM (generic)",
5858
long_description=README,

integrations/pjrt/python_packages/iree_vulkan_plugin/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def build_default_configuration(self):
5252
name=f"iree-pjrt-plugin-vulkan{iree_pjrt_setup.PACKAGE_SUFFIX}",
5353
version=f"{iree_pjrt_setup.PACKAGE_VERSION}",
5454
author="The IREE Team",
55-
author_email="iree-discuss@googlegroups.com",
55+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
5656
license="Apache-2.0",
5757
description="IREE PJRT Plugin for Vulkan (generic)",
5858
long_description=README,

integrations/tensorflow/python_projects/iree_tf/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def load_version_info():
4545
name=f"iree-tools-tf{PACKAGE_SUFFIX}",
4646
version=f"{PACKAGE_VERSION}",
4747
author="The IREE Team",
48-
author_email="iree-discuss@googlegroups.com",
48+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
4949
license="Apache-2.0",
5050
description="IREE TensorFlow Compiler Tools",
5151
long_description=README,

integrations/tensorflow/python_projects/iree_tflite/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def load_version_info():
4545
name=f"iree-tools-tflite{PACKAGE_SUFFIX}",
4646
version=f"{PACKAGE_VERSION}",
4747
author="The IREE Team",
48-
author_email="iree-discuss@googlegroups.com",
48+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
4949
license="Apache-2.0",
5050
description="IREE TFLite Compiler Tools",
5151
long_description=README,

runtime/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def populate_built_package(abs_dir):
521521
name=f"{custom_package_prefix}iree-runtime{custom_package_suffix}{PACKAGE_SUFFIX}",
522522
version=f"{PACKAGE_VERSION}",
523523
author="IREE Authors",
524-
author_email="iree-discuss@googlegroups.com",
524+
author_email="iree-technical-discussion@lists.lfaidata.foundation",
525525
description="IREE Python Runtime Components",
526526
long_description=README,
527527
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)