Skip to content

Commit

Permalink
Update tests to require python >= 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nd4p90x committed Dec 2, 2024
1 parent 3b545fa commit 0f93c7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Run with setup-python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Setup required modules
run: python -m pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s segment

- name: Run with setup-python 3.9
uses: actions/setup-python@v5
with:
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
"requests~=2.7",
"backoff~=2.1",
"python-dateutil~=2.2",
"PyJWT~=2.8"
"PyJWT~=2.10"
]

tests_require = [
"mock==2.0.0",
"pylint==2.8.0",
"pylint==3.3.1",
"flake8==3.7.9",
]

Expand Down Expand Up @@ -56,9 +56,6 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 0f93c7a

Please sign in to comment.