Skip to content

Commit 03e179e

Browse files
committed
Fixed pygls version to 0.9.1 (closes #88)
Minor changes in the docker stuff
1 parent 30fda30 commit 03e179e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.ci/scripts/docker_build.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ function setup_msim {
4646

4747
installer=$(basename $URL_MAIN)
4848

49-
download_if_needed "$DOWNLOAD_DIR/$installer" $URL_MAIN
50-
download_if_needed "$DOWNLOAD_DIR/$(basename $URL_PART_2)" $URL_PART_2
51-
5249
if [ ! -f "$CONTEXT/msim/modelsim_ase/linuxaloem/vsim" ]; then
50+
51+
download_if_needed "$DOWNLOAD_DIR/$installer" $URL_MAIN
52+
download_if_needed "$DOWNLOAD_DIR/$(basename $URL_PART_2)" $URL_PART_2
53+
5354
chmod +x "$DOWNLOAD_DIR/$installer"
5455
"$DOWNLOAD_DIR/$installer" --mode unattended \
5556
--modelsim_edition modelsim_ase \

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
Programming Language :: Python :: 3.5
3434
Programming Language :: Python :: 3.6
3535
Programming Language :: Python :: 3.7
36+
Programming Language :: Python :: 3.8
3637
Topic :: Software Development
3738
Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
3839
Topic :: Text Editors :: Integrated Development Environments (IDE)
@@ -60,7 +61,7 @@
6061
'future>=0.14.0',
6162
'futures; python_version<"3.2"',
6263
'prettytable>=0.7.2',
63-
'pygls>=0.9.1',
64+
'pygls==0.9.1',
6465
'requests>=2.20.0',
6566
'six>=1.10.0',
6667
'tabulate>=0.8.5',

0 commit comments

Comments
 (0)