Skip to content

Commit

Permalink
Adjusting build parameters to bypass 3.5 for this PR
Browse files Browse the repository at this point in the history
  • Loading branch information
maddie-vargo committed Dec 29, 2020
1 parent a0ebe57 commit 077dea1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.5, 3.6, 3.7, 3.8]
python: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
install_requires=[
"click>=7.1.1",
"colorama>=0.4.3",
Expand All @@ -54,7 +54,6 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,37,36,35}
py{38,37,36}
docs
style
skip_missing_interpreters = true
Expand All @@ -10,6 +10,7 @@ deps =
pytest == 4.6.11
pytest-mock == 2.0.0
pytest-cov == 2.10.0
pandas == 1.1.3

commands =
# -v: verbose
Expand Down

0 comments on commit 077dea1

Please sign in to comment.