Skip to content

Commit

Permalink
Merge pull request #77 from zaanposni/release/2.1.0
Browse files Browse the repository at this point in the history
release/2.1.0
  • Loading branch information
zaanposni authored May 21, 2024
2 parents f6d7e50 + 810a7f3 commit 4e4ce18
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 15 deletions.
44 changes: 38 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,30 @@ jobs:
working-directory: tests
run: python start.py

Python_3_8:
Python_3_11:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Tests
working-directory: tests
run: python start.py

Python_3_10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -34,14 +50,30 @@ jobs:
working-directory: tests
run: python start.py

Python_3_7:
Python_3_9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Tests
working-directory: tests
run: python start.py

Python_3_8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311', 'py312']
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
exclude = '''
/(
\.git
Expand Down
2 changes: 0 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

## Installation

Python 3.6 or higher required

```bash
pip install vvspy
```
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
setuptools==69.5.1
requests==2.31.0
requests==2.32.0
typing==3.7.4.3
black==24.4.2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.31.0
requests==2.32.0
typing==3.7.4.3
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="vvspy",
version="2.0.2",
version="2.1.0",
license="MIT",
description="API Wrapper for VVS (Verkehrsverbund Stuttgart)",
author="zaanposni",
Expand All @@ -14,7 +14,7 @@
keywords=["vvs", "api", "stuttgart", "wrapper", "json", "rest", "efa", "python"],
packages=find_packages(exclude=["*tests"]),
package_data={"vvspy": ["vvspy/*"]},
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=[
"requests",
"typing",
Expand All @@ -25,8 +25,6 @@
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 4e4ce18

Please sign in to comment.