Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand supported Python and VFX Reference Platform versions. #1010

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 29 additions & 8 deletions .github/workflows/testing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,48 @@ jobs:
- name: Run Python Tests
run: ci/run_python_tests.sh

lint_python_2020:
name: Lint Python Code (CY2020)
test_cuebot_2020:
name: Build Cuebot and Run Unit Tests (CY2020)
runs-on: ubuntu-latest
container: aswf/ci-opencue:2020
container:
image: aswf/ci-opencue:2020
steps:
- uses: actions/checkout@v2
- name: Lint Python Code
run: ci/run_python_lint.sh
- name: Build with Gradle
run: |
chown -R aswfuser:aswfgroup .
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser

test_cuebot_2020:
name: Build Cuebot and Run Unit Tests (CY2020)
test_python_2021:
name: Run Python Unit Tests (CY2021)
runs-on: ubuntu-latest
container: aswf/ci-opencue:2021
steps:
- uses: actions/checkout@v2
- name: Run Python Tests
run: ci/run_python_tests.sh

test_cuebot_2021:
name: Build Cuebot and Run Unit Tests (CY2021)
runs-on: ubuntu-latest
container:
image: aswf/ci-opencue:2020
image: aswf/ci-opencue:2021
steps:
- uses: actions/checkout@v2
- name: Build with Gradle
run: |
chown -R aswfuser:aswfgroup .
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser

lint_python:
name: Lint Python Code
runs-on: ubuntu-latest
container: aswf/ci-opencue:2021
steps:
- uses: actions/checkout@v2
- name: Lint Python Code
run: ci/run_python_lint.sh

test_sphinx:
name: Test Documentation Build
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![OpenCue](/images/opencue_logo_with_text.png)

[![Supported VFX Platform Versions](https://img.shields.io/badge/vfx%20platform-2019--2020-lightgrey.svg)](http://www.vfxplatform.com/)
![Supported Python Versions](https://img.shields.io/badge/python-2.7%2C%203.6%2C%203.7-blue.svg)
[![Supported VFX Platform Versions](https://img.shields.io/badge/vfx%20platform-2019--2021-lightgrey.svg)](http://www.vfxplatform.com/)
![Supported Python Versions](https://img.shields.io/badge/python-2.7%2C%203.6%2C%203.9-blue.svg)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2837/badge)](https://bestpractices.coreinfrastructure.org/projects/2837)

- [Introduction](#Introduction)
Expand Down
2 changes: 2 additions & 0 deletions cueadmin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(),
entry_points={
Expand Down
2 changes: 2 additions & 0 deletions cuegui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(),
package_data={
Expand Down
5 changes: 5 additions & 0 deletions cuesubmit/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(),
package_data={
Expand Down
2 changes: 2 additions & 0 deletions pycue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['tests']),
package_data={
Expand Down
2 changes: 2 additions & 0 deletions pyoutline/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['tests']),
data_files=[
Expand Down
5 changes: 5 additions & 0 deletions rqd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(),
entry_points={
Expand Down