Skip to content

Commit

Permalink
remove base64 from install list
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenMeinecke committed Nov 15, 2021
1 parent 51db2b7 commit f53f097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/github_test_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install .
pip install numpydoc sphinx sphinx_rtd_theme plotly matplotlib python-igraph geopandas base64 hashlib zlib pytest pytest-xdist ortools xlsxwriter openpyxl cryptography
pip install .["all"]
if ${{ matrix.python-version == '3.7' }}; then python -m pip install pypower; fi
if ${{ matrix.python-version != '3.6' }}; then python -m pip install numba; fi
- name: Install Julia
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@
"performance": ["ortools"],
"fileio": ["xlsxwriter", "openpyxl", "cryptography", "geopandas"], # "fiona" is a depedency of geopandas and so already available
"all": ["numpydoc", "sphinx", "sphinx_rtd_theme",
"plotly", "matplotlib", "python-igraph", "geopandas", "base64", "hashlib", "zlib",
"plotly", "matplotlib", "python-igraph", "geopandas", "hashlib", "zlib",
"pytest", "pytest-xdist",
"ortools",
"xlsxwriter", "openpyxl", "cryptography"
]}, # "shapely", "pyproj", "fiona" are depedencies of geopandas and so already available
# base64 produces problems, so it is not included to "all"
packages=find_packages(),
include_package_data=True,
classifiers=classifiers
Expand Down

0 comments on commit f53f097

Please sign in to comment.