Skip to content

Commit e99f906

Browse files
authored
version update (#1414)
* version update * + * + * + * + * + * + * + * +
1 parent 53b4238 commit e99f906

File tree

9 files changed

+24
-60
lines changed

9 files changed

+24
-60
lines changed

.github/workflows/dl_cpu.yml

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,8 @@ jobs:
2020
max-parallel: 4
2121
matrix:
2222
os: [ubuntu-18.04, ubuntu-20.04, macOS-10.15] # windows-2019,
23-
python-version: [3.7, 3.8]
23+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2424
requirements: [latest]
25-
exclude:
26-
# pickle problems
27-
- python-version: 3.8
28-
os: macOS-10.15
29-
- python-version: 3.6
30-
os: macOS-10.15
31-
# github CI problems
32-
# - python-version: 3.8
33-
# os: ubuntu-18.04
34-
# requirements: minimal
35-
# - python-version: 3.8
36-
# os: ubuntu-20.04
37-
# requirements: minimal
38-
# - python-version: 3.7
39-
# os: ubuntu-18.04
40-
# requirements: minimal
41-
# - python-version: 3.7
42-
# os: ubuntu-20.04
43-
# requirements: minimal
44-
# - python-version: 3.7
45-
# os: macOS-10.15
46-
# requirements: minimal
4725

4826
timeout-minutes: 60
4927
steps:

.github/workflows/dl_cpu_minimal.yml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,19 @@ jobs:
2020
max-parallel: 4
2121
matrix:
2222
os: [ubuntu-18.04, ubuntu-20.04, macOS-10.15] #, windows-2019,
23-
python-version: [3.7, 3.8]
23+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2424
requirements: [minimal]
2525
exclude:
26-
# pickle problems
27-
- python-version: 3.8
28-
os: macOS-10.15
29-
- python-version: 3.6
30-
os: macOS-10.15
31-
# github CI problems
32-
- python-version: 3.8
33-
os: ubuntu-18.04
26+
- python-version: 3.9
3427
requirements: minimal
35-
- python-version: 3.8
36-
os: ubuntu-20.04
28+
- python-version: 3.10
3729
requirements: minimal
3830
- python-version: 3.7
3931
os: macOS-10.15
40-
# - python-version: 3.7
41-
# os: ubuntu-18.04
42-
# requirements: minimal
43-
# - python-version: 3.7
44-
# os: ubuntu-20.04
45-
# requirements: minimal
46-
# - python-version: 3.7
47-
# os: macOS-10.15
48-
# requirements: minimal
32+
requirements: minimal
33+
- python-version: 3.8
34+
os: macOS-10.15
35+
requirements: minimal
4936

5037
timeout-minutes: 60
5138
steps:

.github/workflows/integrations.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,13 @@ jobs:
2020
max-parallel: 4
2121
matrix:
2222
os: [ubuntu-18.04, ubuntu-20.04] # windows-2019,
23-
python-version: [3.7, 3.8]
23+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2424
requirements: [minimal, latest]
2525
exclude:
26-
# pypi problems
27-
- python-version: 3.8
28-
requirements: 'minimal'
29-
- python-version: 3.7
30-
requirements: 'minimal'
31-
# pickle problems
32-
- python-version: 3.8
33-
os: macOS-10.15
34-
- python-version: 3.6
35-
os: macOS-10.15
26+
- python-version: 3.9
27+
requirements: minimal
28+
- python-version: 3.10
29+
requirements: minimal
3630

3731
timeout-minutes: 30
3832
steps:

bin/workflows/check_settings.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
set -eo pipefail -v
55

66
function clean_requirements() {
7-
pip uninstall -r requirements/requirements-dev.txt -y
7+
pip uninstall -r requirements/requirements-comet.txt -y
88
pip uninstall -r requirements/requirements-cv.txt -y
9+
pip uninstall -r requirements/requirements-deepspeed.txt -y
10+
pip uninstall -r requirements/requirements-dev.txt -y
911
pip uninstall -r requirements/requirements-ml.txt -y
10-
pip uninstall -r requirements/requirements-optuna.txt -y
1112
pip uninstall -r requirements/requirements-mlflow.txt -y
1213
pip uninstall -r requirements/requirements-neptune.txt -y
14+
pip uninstall -r requirements/requirements-optuna.txt -y
15+
pip uninstall -r requirements/requirements-wandb.txt -y
1316
pip install -r requirements/requirements.txt --quiet \
1417
--find-links https://download.pytorch.org/whl/cpu/torch_stable.html \
1518
--upgrade-strategy only-if-needed

catalyst/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "22.02.1"
1+
__version__ = "22.04"

requirements/requirements-cv.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
imageio>=2.5.0
2-
opencv-python-headless>=4.1.1.26
2+
opencv-python-headless>=4.2.0.32
33
scikit-image<0.19.0>=0.16.1
44
torchvision>=0.5.0
55
Pillow>=6.1 # torchvision fix (https://github.com/python-pillow/Pillow/issues/4130)

requirements/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytest==5.3.1
1+
pytest
22
sphinx==2.2.1
33
Jinja2<=3.0.3
44
docutils==0.17.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
optuna>=2.0.0
1+
optuna>=2.0.0

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ def load_version():
129129
"Programming Language :: Python",
130130
"Programming Language :: Python :: 3.7",
131131
"Programming Language :: Python :: 3.8",
132+
"Programming Language :: Python :: 3.9",
133+
"Programming Language :: Python :: 3.10",
132134
"Programming Language :: Python :: Implementation :: CPython",
133135
],
134136
)

0 commit comments

Comments
 (0)