You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# You can use your venv python while it's activated simply by running py
61
61
# E.g. py main.py
@@ -88,7 +88,7 @@ Linux & MacOS
88
88
source venv/bin/activate
89
89
90
90
# Install your packages...
91
-
pip install -U twitchio
91
+
pip install -U twitchio --pre
92
92
93
93
# You can use your venv python while it's activated simply by running python
94
94
# E.g. python main.py
@@ -120,27 +120,27 @@ The following commands can be used to install TwitchIO with optional features:
120
120
121
121
.. code:: shell
122
122
123
-
pip install -U twitchio[starlette]
123
+
pip install -U twitchio[starlette] --pre
124
124
125
125
126
126
**For development purposes**:
127
127
128
128
.. code:: shell
129
129
130
-
pip install -U twitchio[dev]
130
+
pip install -U twitchio[dev] --pre
131
131
132
132
133
133
**For documentation purposes**:
134
134
135
135
.. code:: shell
136
136
137
-
pip install -U twitchio[docs]
137
+
pip install -U twitchio[docs] --pre
138
138
139
139
140
140
Custom Index
141
141
============
142
142
143
-
Using TwitchIO with ``Python >= 3.13`` may require the use of a custom pip index.
143
+
Using TwitchIO with ``Python >= 3.14`` may require the use of a custom pip index.
144
144
The index allows pip to fetch pre-built wheels for some dependencies that may require build-tools for C/C++ due to not having released their own wheels for recent versions of Python.
145
145
146
146
Usually with time, dependencies will eventually release wheels for new Python releases.
@@ -151,7 +151,7 @@ For convenience we provide an index thanks to `Abstract Umbra <https://github.co
0 commit comments