We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e9e006 commit 8674fb5Copy full SHA for 8674fb5
ci/create_venv.sh
@@ -3,6 +3,13 @@
3
python3 -m venv venv
4
source venv/bin/activate
5
python3 -c 'import sys; print("Python version:", sys.version)'
6
+
7
+# Until amaranth 0.4 is published, Pythons newer than 3.9 need to install from git.
8
+if [ "$(python3 -c 'import sys; print(sys.version_info[1])')" -gt 9 ]; then
9
+ echo "Using Amaranth from GitHub as Python >3.9 (remove after Amaranth 0.4 is released)."
10
+ pip3 install "git+https://github.com/amaranth-lang/amaranth.git#egg=amaranth"
11
+fi
12
13
pip3 install .
14
pip3 install unittest-parallel
15
pip3 install flake8
0 commit comments