Skip to content

upgrade serde and time #1210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
common installations
  • Loading branch information
DvirDukhan committed Jul 2, 2024
commit 1291dd29c811c9604f0faca1499cfbc00048a6ce
4 changes: 2 additions & 2 deletions .github/workflows/task-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
# - name: Setup common
# run: .install/common_installations.sh ${{ steps.mode.outputs.mode }}
- name: Setup common
run: .install/common_installations.sh ${{ steps.mode.outputs.mode }}


- name: Install llvm & rust
Expand Down
28 changes: 28 additions & 0 deletions .install/common_installations.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash
set -e
OS_TYPE=$(uname -s)
MODE=$1 # whether to install using sudo or not

activate_venv() {
echo "copy ativation script to shell config"
if [[ $OS_TYPE == Darwin ]]; then
echo "source venv/bin/activate" >> ~/.bashrc
echo "source venv/bin/activate" >> ~/.zshrc
else
echo "source $PWD/venv/bin/activate" >> ~/.bash_profile
fi
}

python3 -m venv venv
activate_venv
source venv/bin/activate

pip install --upgrade pip
pip install -q --upgrade setuptools
echo "pip version: $(pip --version)"
echo "pip path: $(which pip)"

pip install -q -r tests/pytests/requirements.txt

# List installed packages
pip list
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy