Skip to content

Commit

Permalink
bump RDS and python
Browse files Browse the repository at this point in the history
  • Loading branch information
duncathan committed Jun 19, 2023
1 parent d708199 commit adc58a9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.10"

- name: Install Python packages
run: python -m pip install --upgrade pip setuptools build

- name: build
run: python -m build

- name: Store the packages
uses: actions/upload-artifact@v2
with:
Expand All @@ -40,14 +40,13 @@ jobs:
test:
needs:
- build

runs-on: ubuntu-latest
name: Test Python ${{ matrix.python.version }}
strategy:
fail-fast: false
matrix:
python:
- {version: '3.9', wheel: 'cp39-cp39'}
- {version: '3.10', wheel: 'cp310-cp310'}
- {version: '3.11', wheel: 'cp311-cp311'}

Expand All @@ -65,7 +64,7 @@ jobs:
with:
name: python-package-distributions
path: dist/

- name: Install Python packages
run: python -m pip install --upgrade pip pytest

Expand Down Expand Up @@ -94,7 +93,7 @@ jobs:
with:
password: ${{ secrets.testpypi_password }}
repository_url: https://test.pypi.org/legacy/

- name: Publish 📦 to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ classifiers =
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Development Status :: 3 - Alpha
Intended Audience :: Developers
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
packages = find:
install_requires =
retro-data-structures>=0.18.0
retro-data-structures>=0.19.1
jsonschema>=4.0.0
ppc-asm

include_package_data = True
zip_safe = False
python_requires = >=3.9
python_requires = >=3.10

[options.packages.find]
exclude =
Expand Down

0 comments on commit adc58a9

Please sign in to comment.