Skip to content

Commit

Permalink
Update CI runner versions and pygame-ce version generally
Browse files Browse the repository at this point in the history
  • Loading branch information
MyreMylar committed Jan 28, 2024
1 parent c8d5ff7 commit 273bf18
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/run_tests_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
pygame-ce-version: ['2.3.2']
pygame-ce-version: ['2.4.0']
steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
pygame-ce-version: ${{ matrix.pygame-ce-version }}
Expand All @@ -37,7 +37,7 @@ jobs:
run: |
xvfb-run pytest --cov-report=xml --cov=pygame_gui tests/
- name: Upload to Code Cov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.5
with:
token: ${{ secrets.CODECOV_TOKEN }} #required

Expand All @@ -48,11 +48,11 @@ jobs:
max-parallel: 4
matrix:
python-version: [ '3.11','3.12' ]
pygame-ce-version: [ '2.3.2' ]
pygame-ce-version: [ '2.4.0' ]
steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}
pygame-ce-version: ${{ matrix.pygame-ce-version }}
Expand All @@ -73,7 +73,7 @@ jobs:
run: |
pytest --cov-report=xml --cov=pygame_gui tests/
- name: Upload to Code Cov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.5
with:
token: ${{ secrets.CODECOV_TOKEN }} #required

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A GUI system for pygame CE.
## Requirements

- Python 3.8+
- Pygame Community Edition 2.1.4+
- Pygame Community Edition 2.4.0+
- python-i18n (does localization to different languages)

## How to install
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
zip_safe=False,
python_requires='>=3.8',
setup_requires=[],
install_requires=['pygame-ce>=2.3.2',
install_requires=['pygame-ce>=2.4.0',
'python-i18n>=0.3.9',
'importlib_resources>1.3; python_version < "3.9"'],
include_package_data=True,
Expand Down

0 comments on commit 273bf18

Please sign in to comment.