Skip to content

Commit

Permalink
testing pinned reqs files
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Feb 23, 2024
1 parent c4ef4fc commit fa02089
Show file tree
Hide file tree
Showing 5 changed files with 5,048 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
python-version: [3.8, 3.9, "3.10"]
allow_failure: [false]
os: [ubuntu-latest]
include:
- python: "3.10"
- python: "3.11"
os: ubuntu-latest
allow_failure: true

Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install -r requirements_dev.txt
- name: Lint with flake8
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
cache: 'pip'
cache-dependency-path: '**/setup.cfg'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev,web,db]"
pip install -r requirements_dev.txt
- name: Lint with flake8
run: |
Expand Down
Loading

0 comments on commit fa02089

Please sign in to comment.