Skip to content

Commit

Permalink
Bring python3.7 into development process (pyecharts#679)
Browse files Browse the repository at this point in the history
* 🔧 Add py37 build configure

* ✏️ Fix typo
  • Loading branch information
kinegratii authored and chenjiandongx committed Aug 15, 2018
1 parent b058764 commit 9b94fb7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ notifications:
on_success: always # default: change
on_failure: always # default: always
python:
- 3.6
- 3.5
- 3.4
- 2.7
- "3.7-dev"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
before_install:
- pip install -r test/requirements.txt
script:
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ environment:
PYTHON_VERSION: "3.5"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7"

install:
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
with open(os.path.join(here, __title__, "_version.py")) as f:
exec(f.read(), about)


setup(
name=__title__,
version=about["__version__"],
Expand Down Expand Up @@ -59,6 +58,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
],
)

0 comments on commit 9b94fb7

Please sign in to comment.