Skip to content

Commit 5f6e4f8

Browse files
authored
Dependency setting clean up (AtsushiSakai#348)
* requiirements.txt use specific version * use appveyor * fix appveyor * fix appveyor * fix appveyor
1 parent eb42d39 commit 5f6e4f8

5 files changed

+9
-44
lines changed

.travis.yml

-35
This file was deleted.

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Please check this paper to understand the philosophy of this project.
1818

1919
## Check your Python version.
2020

21-
We only accept a PR for Python 3.6.x or higher.
21+
We only accept a PR for Python 3.8.x or higher.
2222

2323
We will not accept a PR for Python 2.x.

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ install:
3434
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PYTHON%\Library\bin;%PATH%
3535
- SET PATH=%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin
3636
- conda config --set always_yes yes --set changeps1 no
37+
- conda config --append channels conda-forge
3738
- conda update -q conda
3839
- conda info -a
3940
- conda env create -f C:\\projects\pythonrobotics\environment.yml

environment.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ name: python_robotics
22
dependencies:
33
- python
44
- pip
5-
- matplotlib
65
- scipy
76
- numpy
87
- pandas
8+
- cvxpy
9+
- matplotlib
910
- coverage
10-
- pip:
11-
- cvxpy

requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
numpy
2-
pandas
3-
scipy
4-
matplotlib
5-
cvxpy
1+
numpy == 1.19.0
2+
scipy == 1.5.1
3+
pandas == 1.0.5
4+
matplotlib == 3.2.2
5+
cvxpy == 1.1.1

0 commit comments

Comments
 (0)