Skip to content

Commit

Permalink
⬆️ Drop python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Jul 4, 2023
1 parent 2934f9e commit 7215e6f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -50,7 +50,7 @@ repos:
rev: v3.3.2
hooks:
- id: pyupgrade
args: ["--py37-plus"]
args: ["--py38-plus"]
- repo: https://github.com/asottile/setup-cfg-fmt
rev: "v2.2.0"
hooks:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Added support for pytorch lightning

### Changed

- Removed python 3.7 support

## 1.0.4 (18.01.2023)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -24,7 +24,7 @@ project_urls =
Bug Tracker = https://github.com/klieret/wandb-offline-sync-hook/issues
Documentation = https://wandb_osh.readthedocs.io/
Source Code = https://github.com/klieret/wandb-offline-sync-hook
python_requires = >=3.7
python_requires = >=3.8

[options]
packages = find:
Expand Down

0 comments on commit 7215e6f

Please sign in to comment.