Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
version_check:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
v_tracker: ${{ steps.version.outputs.PYTHON_TRACKER_VERSION}}

Expand All @@ -32,7 +32,7 @@ jobs:

build:
needs: ["version_check"]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

publish:
needs: ["build"]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:

release:
needs: ["publish", "version_check"]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- "3.10"
Expand Down Expand Up @@ -74,7 +72,7 @@ jobs:

coveralls_finish:
needs: ["build"]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Coveralls finished
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Python Support

| Python version | snowplow-tracker version |
| :----: | :----: |
| \>=3.8 | > 1.1.0 |
| \>=3.5 | > 0.10.0 |
| 2.7 | > 0.9.1 |

Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@
"License :: OSI Approved :: Apache Software 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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down