Skip to content

Commit 4ed21e4

Browse files
committed
Virtualenv updates
* Updated lxml to 4.9.2 since 4.8.0 will no longer compile under latest GCC versions. * Updated yappcap to v0.0.2-py3 to address Cython version issue. * setupVenv.sh will now accept parameters which will be passed directly to `python -m venv`
1 parent 77e51ad commit 4ed21e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

extras.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
https://github.com/asterisk/starpy/archive/refs/heads/1.1.zip
2-
https://github.com/asterisk/yappcap/archive/refs/tags/v0.0.1-py3.zip
2+
https://github.com/asterisk/yappcap/archive/refs/tags/v0.0.2-py3.zip

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Cython==0.29.28
1111
hyperlink==21.0.0
1212
idna==3.3
1313
incremental==21.3.0
14-
lxml==4.8.0
14+
lxml==4.9.2
1515
netifaces>=0.10.4
1616
numpy>=1.19.5
1717
pycparser==2.21

setupVenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ then
1616
echo "Skipping creation of new environment, configuring"
1717
do_pip_setup $VIRTUAL_ENV
1818
else
19-
python3 -m venv .venv
19+
python3 -m venv $@ .venv
2020
source .venv/bin/activate
2121
echo "Activated virtual environment:" $VIRTUAL_ENV
2222
if [[ "$VIRTUAL_ENV" != "" ]]

0 commit comments

Comments
 (0)