Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1d00662
Adding requirements.txt into MANIFEST.in
cfuentes-dbx Dec 17, 2025
96a8f3d
Updating coverage.yml
cfuentes-dbx Dec 17, 2025
f5fa12b
Fixing python version for Integration Coverage
cfuentes-dbx Dec 17, 2025
171afed
Updating macos in ci.yml
cfuentes-dbx Dec 17, 2025
1f4c5da
Updating Workflows to deprecate all version of pythons & macos
cfuentes-dbx Dec 17, 2025
a1ba3a7
Updating Workflows to deprecate all version of pythons & macos: ci.yml
cfuentes-dbx Dec 17, 2025
3598daa
Updating Workflows to deprecate all version of pythons & macos: ci.yml
cfuentes-dbx Dec 17, 2025
afc7651
Updating Workflows to deprecate all version of pythons & macos: ci.ym…
cfuentes-dbx Dec 17, 2025
3dd8695
ci.yml going back to ubuntu 20.04 for 3.7
cfuentes-dbx Dec 17, 2025
1d97bb2
ci.yml going back to ubuntu 20.04 for Docs
cfuentes-dbx Dec 17, 2025
f74dae2
Reverting setup-python
cfuentes-dbx Dec 17, 2025
24590fb
Changing actions to Ubuntu 22.04 as 20.04 is deprecated
cfuentes-dbx Dec 18, 2025
830f5a3
Removing python2.7
cfuentes-dbx Dec 18, 2025
05c0151
Changing actions versions
cfuentes-dbx Dec 18, 2025
4269ce8
Changing actions versions
cfuentes-dbx Dec 18, 2025
7806bed
Changing actions versions
cfuentes-dbx Dec 18, 2025
e04ec35
Changing actions versions
cfuentes-dbx Dec 18, 2025
6677bec
Changing actions versions
cfuentes-dbx Dec 18, 2025
3176fd7
Changing actions versions
cfuentes-dbx Dec 18, 2025
67a50ad
Changing actions versions
cfuentes-dbx Dec 18, 2025
fb0a38d
Changing actions versions
cfuentes-dbx Dec 18, 2025
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
18 changes: 14 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ jobs:
Coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python environment
uses: actions/setup-python@v3.1.4
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.9'
- name: Setup virtual environment
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
- name: Install Requirements
run: |
python -m pip install --upgrade pip
Expand All @@ -40,7 +45,12 @@ jobs:
- name: Setup Python environment
uses: actions/setup-python@v3.1.4
with:
python-version: '3.7'
python-version: '3.9'
- name: Setup virtual environment
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
- name: Install Requirements
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include ez_setup.py
include LICENSE
include *.rst
include requirements.txt
include test/requirements.txt
Loading