Skip to content

Commit

Permalink
Merge pull request #74 from dgilmanAIDENTIFIED/jellyfish-1.x
Browse files Browse the repository at this point in the history
Jellyfish 1.x
  • Loading branch information
pauldhawk authored Jul 13, 2024
2 parents 34da8f6 + ef49fb2 commit daa51b7
Show file tree
Hide file tree
Showing 6 changed files with 228 additions and 231 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,21 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
pipenv install --dev --python `which python`
pipenv install --dev --skip-lock --python `which python`
- name: Linting and formatting
if: ${{ matrix.python-version == '3.11' }}
run: |
# stop the build if there are Python syntax errors or undefined names
pipenv run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pytz = "*"
requests = "<3.0"

[packages]
jellyfish = "==0.11.2"
jellyfish = "~=1.0"


[pipenv]
Expand Down
Loading

0 comments on commit daa51b7

Please sign in to comment.