Skip to content

Commit f9b6802

Browse files
authored
Expand supported Python and VFX Reference Platform versions. (#1010)
1 parent 606d7d4 commit f9b6802

File tree

8 files changed

+49
-10
lines changed

8 files changed

+49
-10
lines changed

.github/workflows/testing-pipeline.yml

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,27 +37,48 @@ jobs:
3737
- name: Run Python Tests
3838
run: ci/run_python_tests.sh
3939

40-
lint_python_2020:
41-
name: Lint Python Code (CY2020)
40+
test_cuebot_2020:
41+
name: Build Cuebot and Run Unit Tests (CY2020)
4242
runs-on: ubuntu-latest
43-
container: aswf/ci-opencue:2020
43+
container:
44+
image: aswf/ci-opencue:2020
4445
steps:
4546
- uses: actions/checkout@v2
46-
- name: Lint Python Code
47-
run: ci/run_python_lint.sh
47+
- name: Build with Gradle
48+
run: |
49+
chown -R aswfuser:aswfgroup .
50+
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
4851
49-
test_cuebot_2020:
50-
name: Build Cuebot and Run Unit Tests (CY2020)
52+
test_python_2021:
53+
name: Run Python Unit Tests (CY2021)
54+
runs-on: ubuntu-latest
55+
container: aswf/ci-opencue:2021
56+
steps:
57+
- uses: actions/checkout@v2
58+
- name: Run Python Tests
59+
run: ci/run_python_tests.sh
60+
61+
test_cuebot_2021:
62+
name: Build Cuebot and Run Unit Tests (CY2021)
5163
runs-on: ubuntu-latest
5264
container:
53-
image: aswf/ci-opencue:2020
65+
image: aswf/ci-opencue:2021
5466
steps:
5567
- uses: actions/checkout@v2
5668
- name: Build with Gradle
5769
run: |
5870
chown -R aswfuser:aswfgroup .
5971
su -c "cd cuebot && ./gradlew build --stacktrace --info" aswfuser
6072
73+
lint_python:
74+
name: Lint Python Code
75+
runs-on: ubuntu-latest
76+
container: aswf/ci-opencue:2021
77+
steps:
78+
- uses: actions/checkout@v2
79+
- name: Lint Python Code
80+
run: ci/run_python_lint.sh
81+
6182
test_sphinx:
6283
name: Test Documentation Build
6384
runs-on: ubuntu-latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![OpenCue](/images/opencue_logo_with_text.png)
22

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

77
- [Introduction](#Introduction)

cueadmin/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
'Programming Language :: Python :: 3',
4747
'Programming Language :: Python :: 3.6',
4848
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4951
],
5052
packages=find_packages(),
5153
entry_points={

cuegui/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
'Programming Language :: Python :: 3',
4747
'Programming Language :: Python :: 3.6',
4848
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4951
],
5052
packages=find_packages(),
5153
package_data={

cuesubmit/setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343

4444
'Programming Language :: Python :: 2',
4545
'Programming Language :: Python :: 2.7',
46+
'Programming Language :: Python :: 3',
47+
'Programming Language :: Python :: 3.6',
48+
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4651
],
4752
packages=find_packages(),
4853
package_data={

pycue/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
'Programming Language :: Python :: 3',
4747
'Programming Language :: Python :: 3.6',
4848
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4951
],
5052
packages=find_packages(exclude=['tests']),
5153
package_data={

pyoutline/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
'Programming Language :: Python :: 3',
4747
'Programming Language :: Python :: 3.6',
4848
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4951
],
5052
packages=find_packages(exclude=['tests']),
5153
data_files=[

rqd/setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343

4444
'Programming Language :: Python :: 2',
4545
'Programming Language :: Python :: 2.7',
46+
'Programming Language :: Python :: 3',
47+
'Programming Language :: Python :: 3.6',
48+
'Programming Language :: Python :: 3.7',
49+
'Programming Language :: Python :: 3.8',
50+
'Programming Language :: Python :: 3.9',
4651
],
4752
packages=find_packages(),
4853
entry_points={

0 commit comments

Comments
 (0)