apyefa 1.1.1__tar.gz → 1.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of apyefa might be problematic. Click here for more details.

Files changed (63) hide show
  1. apyefa-1.1.2/.github/FUNDING.yml +1 -0
  2. apyefa-1.1.2/.github/dependabot.yml +14 -0
  3. {apyefa-1.1.1 → apyefa-1.1.2}/.github/release-drafter.yml +20 -5
  4. {apyefa-1.1.1 → apyefa-1.1.2}/.github/workflows/python-package.yml +7 -12
  5. {apyefa-1.1.1 → apyefa-1.1.2}/.github/workflows/release_drafter.yml +1 -2
  6. {apyefa-1.1.1 → apyefa-1.1.2}/PKG-INFO +1 -1
  7. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/data_classes.py +1 -0
  8. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa.egg-info/PKG-INFO +1 -1
  9. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa.egg-info/SOURCES.txt +2 -2
  10. {apyefa-1.1.1 → apyefa-1.1.2}/pyproject.toml +1 -1
  11. apyefa-1.1.1/.github/labeler.yml +0 -14
  12. apyefa-1.1.1/.github/workflows/labeler.yml +0 -13
  13. {apyefa-1.1.1 → apyefa-1.1.2}/.gitignore +0 -0
  14. {apyefa-1.1.1 → apyefa-1.1.2}/.vscode/settings.json +0 -0
  15. {apyefa-1.1.1 → apyefa-1.1.2}/LICENSE +0 -0
  16. {apyefa-1.1.1 → apyefa-1.1.2}/README.md +0 -0
  17. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/__init__.py +0 -0
  18. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/client.py +0 -0
  19. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/__init__.py +0 -0
  20. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command.py +0 -0
  21. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_add_info.py +0 -0
  22. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_coord.py +0 -0
  23. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_departures.py +0 -0
  24. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_geoobject.py +0 -0
  25. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_line_list.py +0 -0
  26. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_line_stop.py +0 -0
  27. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_serving_lines.py +0 -0
  28. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_stop_finder.py +0 -0
  29. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_stop_list.py +0 -0
  30. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_system_info.py +0 -0
  31. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/command_trip.py +0 -0
  32. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/parsers/__init__.py +0 -0
  33. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/parsers/parser.py +0 -0
  34. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/parsers/rapid_json_parser.py +0 -0
  35. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/commands/parsers/xml_parser.py +0 -0
  36. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/exceptions.py +0 -0
  37. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa/helpers.py +0 -0
  38. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa.egg-info/dependency_links.txt +0 -0
  39. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa.egg-info/requires.txt +0 -0
  40. {apyefa-1.1.1 → apyefa-1.1.2}/apyefa.egg-info/top_level.txt +0 -0
  41. {apyefa-1.1.1 → apyefa-1.1.2}/examples.py +0 -0
  42. {apyefa-1.1.1 → apyefa-1.1.2}/setup.cfg +0 -0
  43. {apyefa-1.1.1 → apyefa-1.1.2}/tests/conftest.py +0 -0
  44. {apyefa-1.1.1 → apyefa-1.1.2}/tests/integration/test_endpoints.py +0 -0
  45. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/__init__.py +0 -0
  46. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/parsers/__init__.py +0 -0
  47. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/parsers/test_json_parser.py +0 -0
  48. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/parsers/test_xml_parser.py +0 -0
  49. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd.py +0 -0
  50. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_departures.py +0 -0
  51. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_line_list.py +0 -0
  52. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_line_stop.py +0 -0
  53. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_serving_lines.py +0 -0
  54. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_stop_finder.py +0 -0
  55. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_stop_list.py +0 -0
  56. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/commands/test_cmd_system_info.py +0 -0
  57. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/data_classes/__init__.py +0 -0
  58. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/data_classes/test_departure.py +0 -0
  59. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/data_classes/test_location.py +0 -0
  60. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/data_classes/test_system_info.py +0 -0
  61. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/data_classes/test_transportation.py +0 -0
  62. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/test_client.py +0 -0
  63. {apyefa-1.1.1 → apyefa-1.1.2}/tests/unit/test_helpers.py +0 -0
@@ -0,0 +1 @@
1
+ ko_fi: alexjungnbg
@@ -0,0 +1,14 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: github-actions
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ - package-ecosystem: pip
8
+ directory: "/.github/workflows"
9
+ schedule:
10
+ interval: daily
11
+ - package-ecosystem: pip
12
+ directory: "/"
13
+ schedule:
14
+ interval: daily
@@ -1,20 +1,35 @@
1
+ name-template: 'v$RESOLVED_VERSION'
2
+ tag-template: 'v$RESOLVED_VERSION'
1
3
  categories:
2
4
  - title: ":boom: Breaking Changes"
3
5
  label: "breaking"
4
6
  - title: ":rocket: Features"
5
- label: "enhancement"
7
+ labels:
8
+ - "enhancement"
9
+ - "feature"
10
+ - "features"
6
11
  - title: ":fire: Removals and Deprecations"
7
12
  label: "removal"
8
13
  - title: ":beetle: Fixes"
9
- label: "bug"
14
+ labels:
15
+ - "bug"
16
+ - "fix"
17
+ - "bugfix"
10
18
  - title: ":racehorse: Performance"
11
19
  label: "performance"
12
20
  - title: ":rotating_light: Testing"
13
- label: "testing"
21
+ labels:
22
+ - "testing"
23
+ - "test"
14
24
  - title: ":construction_worker: Continuous Integration"
15
- label: "ci"
25
+ labels:
26
+ - "ci"
27
+ - "ci/cd"
16
28
  - title: ":books: Documentation"
17
- label: "documentation"
29
+ labels:
30
+ - "documentation"
31
+ - "doc"
32
+ - "docs"
18
33
  - title: ":hammer: Refactoring"
19
34
  label: "refactoring"
20
35
  - title: ":lipstick: Style"
@@ -1,13 +1,8 @@
1
- # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2
- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3
-
4
- name: Python package
1
+ name: Lint and Test
5
2
 
6
3
  on:
7
- push:
8
- branches: [ "master", "dev" ]
9
- pull_request:
10
- branches: [ "master" ]
4
+ - push
5
+ - pull_request
11
6
 
12
7
  permissions:
13
8
  checks: write
@@ -23,9 +18,9 @@ jobs:
23
18
  python-version: ["3.11", "3.12", "3.13"]
24
19
 
25
20
  steps:
26
- - uses: actions/checkout@v4
21
+ - uses: actions/checkout@v5
27
22
  - name: Set up Python ${{ matrix.python-version }}
28
- uses: actions/setup-python@v5
23
+ uses: actions/setup-python@v6
29
24
  with:
30
25
  python-version: ${{ matrix.python-version }}
31
26
  - name: Display Python version
@@ -37,9 +32,9 @@ jobs:
37
32
  - name: Install the code linting and formatting tool Ruff
38
33
  run: pipx install ruff
39
34
  - name: Lint code with Ruff
40
- run: ruff check --output-format=github --target-version=py311
35
+ run: ruff check --output-format=github
41
36
  - name: Check code formatting with Ruff
42
- run: ruff format --diff --target-version=py311
37
+ run: ruff format --diff
43
38
  continue-on-error: true
44
39
  - name: Test with pytest
45
40
  run: |
@@ -2,7 +2,6 @@ name: Draft a release note
2
2
  on:
3
3
  push:
4
4
  branches:
5
- - main
6
5
  - master
7
6
  jobs:
8
7
  draft_release:
@@ -10,6 +9,6 @@ jobs:
10
9
  runs-on: ubuntu-latest
11
10
  steps:
12
11
  - name: Run release-drafter
13
- uses: release-drafter/release-drafter@v6.0.0
12
+ uses: release-drafter/release-drafter@v6.1.0
14
13
  env:
15
14
  GITHUB_TOKEN: ${{ secrets.API_TOKEN }}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apyefa
3
- Version: 1.1.1
3
+ Version: 1.1.2
4
4
  Summary: Python API for EFA(Elektronische Fahrplanauskunft) async requests
5
5
  Author-email: Alex Jung <jungdevelop@gmail.com>
6
6
  License: MIT License
@@ -63,6 +63,7 @@ class TransportType(IntEnum):
63
63
  RAIL_REPLACEMENT_TRANSPORT = 17 # Schienenersatzverkehr
64
64
  SHUTTLE_TRAIN = 18 # Schuttlezug
65
65
  CITIZEN_BUS = 19 # Bürgerbus
66
+ UNKNOWN_0 = 20 # TBD
66
67
  UNKNOWN = 99 # TBD
67
68
  FOOT_PATH = 100 # Fussweg
68
69
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apyefa
3
- Version: 1.1.1
3
+ Version: 1.1.2
4
4
  Summary: Python API for EFA(Elektronische Fahrplanauskunft) async requests
5
5
  Author-email: Alex Jung <jungdevelop@gmail.com>
6
6
  License: MIT License
@@ -3,9 +3,9 @@ LICENSE
3
3
  README.md
4
4
  examples.py
5
5
  pyproject.toml
6
- .github/labeler.yml
6
+ .github/FUNDING.yml
7
+ .github/dependabot.yml
7
8
  .github/release-drafter.yml
8
- .github/workflows/labeler.yml
9
9
  .github/workflows/python-package.yml
10
10
  .github/workflows/release_drafter.yml
11
11
  .vscode/settings.json
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
 
8
8
  [project]
9
9
  name = "apyefa"
10
- version = "1.1.1"
10
+ version = "1.1.2"
11
11
  requires-python = ">= 3.11"
12
12
  description = "Python API for EFA(Elektronische Fahrplanauskunft) async requests"
13
13
  authors = [
@@ -1,14 +0,0 @@
1
- documentation:
2
- - changed-files:
3
- - any-glob-to-any-file: '**/*.md'
4
-
5
- # Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name
6
- feature:
7
- - head-branch: ['^feature', 'feature']
8
-
9
- bugfix:
10
- - head-branch: ['^bugfix', '^fix']
11
-
12
- # Add 'release' label to any PR that is opened against the `main` branch
13
- release:
14
- - base-branch: 'master'
@@ -1,13 +0,0 @@
1
- name: "Pull Request Labeler"
2
- on:
3
- - pull_request_target
4
-
5
- jobs:
6
- labeler:
7
- permissions:
8
- contents: read
9
- pull-requests: write
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: "actions/checkout@v4"
13
- - uses: "actions/labeler@v5"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes