Skip to content

Commit

Permalink
Migrate to v2 (#12)
Browse files Browse the repository at this point in the history
* wip

* fix tests

* fixes

* add quoting to python versions

* fixes

* fixes

---------

Co-authored-by: Anton Böhler <[email protected]>
  • Loading branch information
AntVil and true-false-maybe authored Jul 18, 2024
1 parent 544bbe5 commit e7310f4
Show file tree
Hide file tree
Showing 10 changed files with 473 additions and 1,405 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v1
Expand All @@ -32,4 +32,4 @@ jobs:
run: |
nox
env:
APIKEY: ${{ secrets.APIKEY }}
APIKEY: ${{ secrets.APIKEY }}
9 changes: 7 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,10 @@
"python.linting.flake8Args": [
"--max-line-length=1500",
],
"python.pythonPath": "env/bin/python"
}
"python.pythonPath": "env/bin/python",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.tabSize": 4,
"editor.insertSpaces": true
}
5 changes: 3 additions & 2 deletions README_DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Development Guide
## Installation
- `pip install -e .[dev]` or `pip install -e .\[dev\]` if using `ZSH`
## Linting

## Linting
- `nox -s lint_dev`

## Testing
- `nox -s tests`

Loading

0 comments on commit e7310f4

Please sign in to comment.