diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..ffd6cc0 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Stage 1') { + steps { + echo 'Hello world!' + } + } + } +} \ No newline at end of file diff --git a/init.py b/init.py index a397fb1..ca3a2b5 100644 --- a/init.py +++ b/init.py @@ -13,7 +13,7 @@ if not file_exists: subprocess.run(["pip", "install", "--user", "kaggle"]) subprocess.run(["pip", "install", "--user", "pandas"]) subprocess.run(["pip", "install", "--user", "scikit-learn"]) - subprocess.run(["pip", "install", "--user", "matplotlib"]) + # subprocess.run(["pip", "install", "--user", "matplotlib"]) subprocess.run(["kaggle", "datasets", "download", "-d", "hakeem/atp-and-wta-tennis-data"]) subprocess.run(["unzip", "-o", "atp-and-wta-tennis-data.zip"])