Skip to content

Commit

Permalink
OPS: Fix testing config
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Apr 25, 2024
1 parent f38c4aa commit 78a71c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
USING_COVERAGE: '3.9'
strategy:
matrix:
python: [3.8, 3.9]
python: ['3.8', '3.9']
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.9"

- name: Make package
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -12,10 +12,10 @@ jobs:
if: "github.event.pull_request.merged == true"
runs-on: ubuntu-latest
env:
USING_COVERAGE: '3.8'
USING_COVERAGE: '3.9'
strategy:
matrix:
python: [ 3.8 ]
python: ['3.8', '3.9']
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -33,6 +33,7 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = {py38}
envlist = {py38,py39}

[testenv]
setenv =
Expand Down

0 comments on commit 78a71c6

Please sign in to comment.