Skip to content

Commit 12b7391

Browse files
committed
Merge branch 'release/1.1.0'
2 parents 30717fb + 197fa9c commit 12b7391

File tree

7 files changed

+22
-16
lines changed

7 files changed

+22
-16
lines changed

.github/workflows/cd.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
version_check:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
outputs:
1212
v_tracker: ${{ steps.version.outputs.PYTHON_TRACKER_VERSION}}
1313

@@ -32,7 +32,7 @@ jobs:
3232
3333
build:
3434
needs: ["version_check"]
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-latest
3636

3737
strategy:
3838
matrix:
@@ -64,7 +64,7 @@ jobs:
6464

6565
publish:
6666
needs: ["build"]
67-
runs-on: ubuntu-20.04
67+
runs-on: ubuntu-latest
6868

6969
steps:
7070
- name: Checkout code
@@ -96,7 +96,7 @@ jobs:
9696

9797
release:
9898
needs: ["publish", "version_check"]
99-
runs-on: ubuntu-20.04
99+
runs-on: ubuntu-latest
100100

101101
steps:
102102
- name: Checkout code

.github/workflows/ci.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
fail-fast: false
1515
matrix:
1616
python-version:
17-
- 3.6
18-
- 3.7
1917
- 3.8
2018
- 3.9
2119
- "3.10"
@@ -52,7 +50,7 @@ jobs:
5250
5351
- name: MyPy
5452
run: |
55-
python -m pip install mypy
53+
python -m pip install -e .[typing]
5654
mypy snowplow_tracker --exclude '/test'
5755
5856
- name: Demo
@@ -74,7 +72,7 @@ jobs:
7472

7573
coveralls_finish:
7674
needs: ["build"]
77-
runs-on: ubuntu-20.04
75+
runs-on: ubuntu-latest
7876

7977
steps:
8078
- name: Coveralls finished

CHANGES.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 1.1.0 (2025-02-20)
2+
--------------------------
3+
Bump Ubuntu Version in GH Actions (#375)
4+
Avoid installing types-requests at run-time (#370) (Thanks to @edgarrmondragon)
5+
16
Version 1.0.4 (2024-11-19)
27
--------------------------
38
Test with Python 3.13 (#365) (Thanks to @edgarrmondragon)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Python Support
3232

3333
| Python version | snowplow-tracker version |
3434
| :----: | :----: |
35+
| \>=3.8 | > 1.1.0 |
3536
| \>=3.5 | > 0.10.0 |
3637
| 2.7 | > 0.9.1 |
3738

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = 'Alex Dean, Paul Boocock, Matus Tomlein, Jack Keene'
2929

3030
# The full version, including alpha/beta/rc tags
31-
release = "1.0.4"
31+
release = "1.1.0"
3232

3333

3434
# -- General configuration ---------------------------------------------------

setup.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
setup(
4242
name="snowplow-tracker",
43-
version="1.0.4",
43+
version="1.1.0",
4444
author=authors_str,
4545
author_email=authors_email_str,
4646
packages=["snowplow_tracker", "snowplow_tracker.test", "snowplow_tracker.events"],
@@ -56,9 +56,6 @@
5656
"License :: OSI Approved :: Apache Software License",
5757
"Programming Language :: Python",
5858
"Programming Language :: Python :: 3",
59-
"Programming Language :: Python :: 3.5",
60-
"Programming Language :: Python :: 3.6",
61-
"Programming Language :: Python :: 3.7",
6259
"Programming Language :: Python :: 3.8",
6360
"Programming Language :: Python :: 3.9",
6461
"Programming Language :: Python :: 3.10",
@@ -69,7 +66,12 @@
6966
],
7067
install_requires=[
7168
"requests>=2.25.1,<3.0",
72-
"types-requests>=2.25.1,<3.0",
7369
"typing_extensions>=3.7.4",
7470
],
71+
extras_require={
72+
"typing": [
73+
"mypy>=0.971",
74+
"types-requests>=2.25.1,<3.0",
75+
],
76+
},
7577
)

snowplow_tracker/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
# language governing permissions and limitations there under.
1616
# """
1717

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

0 commit comments

Comments
 (0)