Skip to content

Commit

Permalink
drop 3.6 support (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyThiessen authored May 16, 2023
1 parent 50c953d commit b42bfc1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: False #Setting so that if one of the test suites fail, the other will continue
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v3 #Checkout the project from git
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Beta 0.9.2
Bug Fixes:
* [CRITICAL] Fixed use of deprecated urllib3 method to `allowed_methods`

Developer Changes:
* Dropped support for Python v3.6 as urllib3 no longer supports it

Beta 0.9.1
----------
Changes:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ If you prefer to build the uploader from source code, please see the README on [

##### Command Line

The IRIDA Uploader requires Python version 3.6 or newer
The IRIDA Uploader requires Python version 3.7 or newer

$ python3 --version

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"Operating System :: OS Independent",
],
include_package_data=True,
# Test cases makes make it incompatible with pre 3.6
python_requires='>=3.6',
# urllib3 v2.0 requires >=3.7
python_requires='>=3.7',

)

0 comments on commit b42bfc1

Please sign in to comment.