Skip to content

Commit

Permalink
Merge pull request #14 from mspi92/dev
Browse files Browse the repository at this point in the history
Build-System Fixes
  • Loading branch information
it-iaew authored Oct 19, 2023
2 parents 2e1d41d + fe24bda commit 0635a33
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: "3.11"
- name: Install requirements
run: |
python -m pip install --upgrade pip
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License', 'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
], # Optional
packages=find_packages(exclude=[
Expand Down

0 comments on commit 0635a33

Please sign in to comment.