88 name : Create Package
99 runs-on : ubuntu-latest
1010 container :
11- image : danielflook/python-minifier-build:python3.10 -2022-04-12
11+ image : danielflook/python-minifier-build:python3.11 -2022-08-23
1212 steps :
1313 - name : Checkout
1414 uses : actions/checkout@v2
3636 runs-on : ubuntu-latest
3737 needs : [package]
3838 container :
39- image : danielflook/python-minifier-build:python3.10 -2022-04-12
39+ image : danielflook/python-minifier-build:python3.11 -2022-08-23
4040 steps :
4141 - uses : actions/download-artifact@v3
4242 with :
@@ -62,10 +62,10 @@ jobs:
6262 needs : [package]
6363 strategy :
6464 matrix :
65- python : ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
65+ python : ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ]
6666 package_type : [.tar.gz, .whl]
6767 container :
68- image : danielflook/python-minifier-build:python${{ matrix.python }}-2022-04-12
68+ image : danielflook/python-minifier-build:python${{ matrix.python }}-2022-08-23
6969 steps :
7070 - uses : actions/download-artifact@v3
7171 with :
9595 matrix :
9696 package_type : [.tar.gz, .whl]
9797 container :
98- image : danielflook/python-minifier-build:python3.10 -2022-04-12
98+ image : danielflook/python-minifier-build:python3.11 -2022-08-23
9999 steps :
100100 - uses : actions/download-artifact@v3
101101 with :
@@ -104,14 +104,14 @@ jobs:
104104
105105 - name : Install package
106106 run : |
107- pip3.10 install dist/*${{ matrix.package_type }}
107+ pip3.11 install dist/*${{ matrix.package_type }}
108108
109109 - name : Checkout
110110 uses : actions/checkout@v2
111111
112112 - name : Test typing
113113 run : |
114- pip3.10 install mypy types-setuptools
114+ pip3.11 install mypy types-setuptools
115115 mypy typing_test/test_typing.py
116116
117117 if mypy typing_test/test_badtyping.py; then
0 commit comments