Skip to content

Commit 6684a0b

Browse files
author
Sylvain MARIE
committed
Removed free channel flag and python 3.5.3
1 parent f6d41e3 commit 6684a0b

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/base.yml

-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ jobs:
5252
# auto-update-conda: true
5353
python-version: 3.7
5454
activate-environment: noxenv
55-
restore-free-channel: true # on pyfields we need this channel for 3.5.3
5655
- run: conda info
5756
shell: bash -l {0} # so that conda works
5857
- run: conda list

noxfile.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
# --- python 2.7
2626
(PY27, "no-typechecker"): {"coverage": False, "type_checker": None, "pkg_specs": {"pip": ">19"}},
2727
(PY27, "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
28-
# --- python 3.5.3
29-
("3.5.3", "no-typechecker"): {"coverage": False, "type_checker": None, "pkg_specs": {"pip": ">19"}},
30-
("3.5.3", "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
31-
("3.5.3", "typeguard"): {"coverage": False, "type_checker": "typeguard", "pkg_specs": {"pip": ">19"}},
28+
# --- python 3.5.3 > requires free channel > hard to make it work on GHA
29+
# ("3.5.3", "no-typechecker"): {"coverage": False, "type_checker": None, "pkg_specs": {"pip": ">19"}},
30+
# ("3.5.3", "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
31+
# ("3.5.3", "typeguard"): {"coverage": False, "type_checker": "typeguard", "pkg_specs": {"pip": ">19"}},
3232
# --- python 3.5
3333
(PY35, "no-typechecker"): {"coverage": False, "type_checker": None, "pkg_specs": {"pip": ">19"}},
3434
(PY35, "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
@@ -38,10 +38,10 @@
3838
(PY36, "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
3939
(PY36, "typeguard"): {"coverage": False, "type_checker": "typeguard", "pkg_specs": {"pip": ">19"}},
4040
# --- python 3.7
41+
(PY37, "no-typechecker"): {"coverage": False, "type_checker": None, "pkg_specs": {"pip": ">19"}},
4142
#(PY37, "pytypes"): {"coverage": False, "type_checker": "pytypes", "pkg_specs": {"pip": ">19"}},
42-
(PY37, "typeguard"): {"coverage": False, "type_checker": "typeguard", "pkg_specs": {"pip": ">19"}},
4343
# IMPORTANT: this should be last so that the folder docs/reports is not deleted afterwards
44-
(PY37, "no-typechecker"): {"coverage": True, "type_checker": None, "pkg_specs": {"pip": ">19"}}
44+
(PY37, "typeguard"): {"coverage": True, "type_checker": "typeguard", "pkg_specs": {"pip": ">19"}}
4545
}
4646

4747
# set the default activated sessions, minimal for CI

0 commit comments

Comments
 (0)