Skip to content

Commit 79fd576

Browse files
authored
Merge pull request #7 from jupyter-server/blink1073-patch-1
2 parents d450411 + 6b632a9 commit 79fd576

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: Tests
22
on:
33
push:
4-
branches: "main"
4+
branches: ["main"]
55
pull_request:
6-
branches: "*"
6+
schedule:
7+
- cron: "0 8 * * *"
8+
79
jobs:
810
# Run "pre-commit run --all-files"
911
pre-commit:
@@ -35,10 +37,8 @@ jobs:
3537
fail-fast: false
3638
matrix:
3739
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
38-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
40+
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
3941
exclude:
40-
- os: "ubuntu-latest"
41-
python-version: "3.6"
4242
- os: "windows-latest"
4343
python-version: "pypy-3.7"
4444
- os: "macos-latest"

setup.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers =
1616
Intended Audience :: Science/Research
1717
License :: OSI Approved :: BSD License
1818
Programming Language :: Python
19-
Programming Language :: Python :: 3.6
2019
Programming Language :: Python :: 3.7
2120
Programming Language :: Python :: 3.8
2221
Programming Language :: Python :: 3.9
@@ -26,11 +25,11 @@ classifiers =
2625
zip_safe = False
2726
include_package_data = True
2827
packages = find:
29-
python_requires = >=3.6
28+
python_requires = >=3.7
3029
install_requires =
31-
jupyter_server>=1,<2
30+
jupyter_server>=1
3231
terminado>=0.8.3
33-
pywinpty(<2);os_name=='nt'
32+
pywinpty;os_name=='nt'
3433

3534
[options.extras_require]
3635
test =

0 commit comments

Comments
 (0)