Skip to content

Commit

Permalink
changed linter to 3.10. bumped tune support to only 3.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
ncilfone committed Aug 30, 2023
1 parent 76358b7 commit 922667e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'

- uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-pytest-tune.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ generating CLI arguments, and hierarchical configuration by composition.

## Quick Install

The basic install and `[s3]` extension require Python 3.6+ while the `[tune]` extension requires Python 3.7+
The basic install and `[s3]` extension require Python 3.6+ while the `[tune]` extension requires Python 3.8+

| Base | w/ S3 Extension | w/ Hyper-Parameter Tuner |
|------|-----------------|--------------------------|
Expand Down
2 changes: 1 addition & 1 deletion requirements/TUNE_REQUIREMENTS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ torch~=2.0 ; python_version >= '3.8'
torch~=1.13 ; python_version <= '3.7'
ax-platform~=0.3.4; python_version >= '3.9'
ax-platform~=0.3.3; python_version == '3.8'
ax-platform~=0.2.4; python_version == '3.7'
# ax-platform~=0.2.4; python_version == '3.7'

0 comments on commit 922667e

Please sign in to comment.