Skip to content

Commit

Permalink
try using python3 pip
Browse files Browse the repository at this point in the history
  • Loading branch information
micah-prime committed May 31, 2024
1 parent f9040c6 commit 3c3ebe8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -27,9 +27,9 @@ jobs:

- name: Install Macos/Linux dependencies
run: |
pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
python setup.py install
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -r requirements.txt
python3 setup.py install
- name: Install Validation
run: |
python -c "import snowexsql"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']

services:

Expand Down Expand Up @@ -44,9 +44,9 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y postgis gdal-bin
python -m pip install --upgrade pip
pip install pytest coverage
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
python3 -m pip install --upgrade pip
python3 -m pip install pytest coverage
if [ -f requirements_dev.txt ]; then python3 -m pip install -r requirements_dev.txt; fi
- name: Test with pytest
run: |
pytest -s
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
description="SQL Database software for SnowEx data",
entry_points={
Expand Down

0 comments on commit 3c3ebe8

Please sign in to comment.