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
8 changes: 3 additions & 5 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 @@ -52,7 +50,7 @@ jobs:

- name: MyPy
run: |
python -m pip install mypy
python -m pip install -e .[typing]
mypy snowplow_tracker --exclude '/test'

- name: Demo
Expand All @@ -74,7 +72,7 @@ jobs:

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

steps:
- name: Coveralls finished
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.1.0 (2025-02-20)
--------------------------
Bump Ubuntu Version in GH Actions (#375)
Avoid installing types-requests at run-time (#370) (Thanks to @edgarrmondragon)

Version 1.0.4 (2024-11-19)
--------------------------
Test with Python 3.13 (#365) (Thanks to @edgarrmondragon)
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
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
author = 'Alex Dean, Paul Boocock, Matus Tomlein, Jack Keene'

# The full version, including alpha/beta/rc tags
release = "1.0.4"
release = "1.1.0"


# -- General configuration ---------------------------------------------------
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

setup(
name="snowplow-tracker",
version="1.0.4",
version="1.1.0",
author=authors_str,
author_email=authors_email_str,
packages=["snowplow_tracker", "snowplow_tracker.test", "snowplow_tracker.events"],
Expand All @@ -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 All @@ -69,7 +66,12 @@
],
install_requires=[
"requests>=2.25.1,<3.0",
"types-requests>=2.25.1,<3.0",
"typing_extensions>=3.7.4",
],
extras_require={
"typing": [
"mypy>=0.971",
"types-requests>=2.25.1,<3.0",
],
},
)
2 changes: 1 addition & 1 deletion snowplow_tracker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# language governing permissions and limitations there under.
# """

__version_info__ = (1, 0, 4)
__version_info__ = (1, 1, 0)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ""