Skip to content

Test on Python37 #206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test on python3.7
  • Loading branch information
max-sixty committed Aug 30, 2018
commit ac530e2b860693cbb62bbd596a8724d6400d1f27
File renamed without changes.
6 changes: 3 additions & 3 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,16 @@ def test36(session):


@nox.session
def test36master(session):
session.interpreter = 'python3.6'
def test37master(session):
session.interpreter = 'python3.7'
session.install(
'--pre',
'--upgrade',
'--timeout=60',
'-f', PANDAS_PRE_WHEELS,
'pandas')
session.install(
'-r', os.path.join('.', 'ci', 'requirements-3.6-MASTER.pip'))
'-r', os.path.join('.', 'ci', 'requirements-3.7-MASTER.pip'))
default(session)


Expand Down