Skip to content

Commit

Permalink
python=3.9 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sambit-giri committed Dec 26, 2024
1 parent 1aee16c commit cda1cd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: [3.8] # Test specifically with Python 3.8
python-version: [3.9] # Test specifically with Python 3.9

steps:
- name: Check out repository code
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
# Activate the Conda environment and update Python
source ~/.bashrc
conda activate myenv
conda install python=3.8 --update-deps # Specify exact Python version
conda install python=3.9 --update-deps # Specify exact Python version
shell: bash

- name: Install additional dependencies
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ channels:
- defaults
- conda-forge
dependencies:
- python=3.8
- python=3.9
- pip:
- -r requirements.txt # This ensures any additional pip packages are installed

0 comments on commit cda1cd4

Please sign in to comment.