Skip to content

Commit

Permalink
CONFIG: Update dependencies (#302)
Browse files Browse the repository at this point in the history
* CONFIG: Update dependencies

* FIX: Stop testing python 3.6.5 in CI

* FIX: Bump numpy to 1.23.0

* FIX: Bump CI Python version to 3.8.0

* FIX: Bump the CI Python version to 3.9.5

* FIX: Remove <3.9 versions from tox config

* FIX: Ignore `unsubscriptable-object` errors in Pylint

---------

Co-authored-by: ucokzeko <[email protected]>
Co-authored-by: Zac Brannelly <[email protected]>
  • Loading branch information
3 people authored Feb 15, 2024
1 parent effbb53 commit 03853dc
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
- name: Set up Python 3.9.5
uses: actions/setup-python@v3
with:
python-version: "3.7.5"
python-version: "3.9.5"
- name: Install tox
run: |
# Install tox
Expand All @@ -40,10 +40,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
- name: Set up Python 3.9.5
uses: actions/setup-python@v3
with:
python-version: "3.7.5"
python-version: "3.9.5"
- name: Install tox
run: |
# Install tox
Expand Down Expand Up @@ -77,10 +77,10 @@ jobs:
startsWith(github.ref_name, 'surround-v')
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
- name: Set up Python 3.9.5
uses: actions/setup-python@v3
with:
python-version: "3.7.5"
python-version: "3.9.5"
- name: Publish
run: |
cd surround
Expand Down Expand Up @@ -123,10 +123,10 @@ jobs:
startsWith(github.ref_name, 'surround-cli-v')
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7.5
- name: Set up Python 3.9.5
uses: actions/setup-python@v3
with:
python-version: "3.7.5"
python-version: "3.9.5"
- name: Publish
run: |
cd surround_cli
Expand Down
3 changes: 2 additions & 1 deletion surround/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ disable = missing-docstring,
attribute-defined-outside-init,
relative-beyond-top-level,
unused-argument,
too-many-arguments
too-many-arguments,
unsubscriptable-object
2 changes: 1 addition & 1 deletion surround/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = python3.6, py37, python3.8, python3.9, python3.10
envlist = python3.9, python3.10
skip_missing_interpreters = True

[testenv]
Expand Down
3 changes: 2 additions & 1 deletion surround_cli/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ disable = missing-docstring,
attribute-defined-outside-init,
relative-beyond-top-level,
unused-argument,
too-many-arguments
too-many-arguments,
unsubscriptable-object
4 changes: 2 additions & 2 deletions surround_cli/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy==1.17.3
pandas==0.25.2
numpy==1.23.0
pandas==2.2.0
doit==0.31.1
pylint==2.4.3
fastapi==0.68.1
Expand Down
2 changes: 1 addition & 1 deletion surround_cli/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = python3.6, py37, python3.8, python3.9, python3.10
envlist = python3.9, python3.10
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 03853dc

Please sign in to comment.