Skip to content

Commit 9136e00

Browse files
authored
Merge pull request #13 from upwork/v3.2.0
v3.2.0
2 parents b2b4bf3 + 30e9a01 commit 9136e00

69 files changed

Lines changed: 111 additions & 1056 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, macos-latest]
19-
python: [ '3.8', '3.9', '3.10' ]
19+
python: [ '3.12' ]
2020

2121
name: Python ${{ matrix.python }}
2222
steps:

README.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,7 @@ This project provides a set of resources of Upwork API from http://developers.up
1212
based on OAuth 2.0.
1313

1414
# Features
15-
These are the supported API resources:
16-
17-
* My Info
18-
* Custom Payments
19-
* Hiring
20-
* Job and Freelancer Profile
21-
* Search Jobs and Freelancers
22-
* Organization
23-
* Messages
24-
* Time and Financial Reporting
25-
* Metadata
26-
* Snapshot
27-
* Team
28-
* Workd Diary
29-
* Activities
15+
The library supports all GraphQL calls, which are publicly shared at Upwork
3016

3117
# License
3218

@@ -53,7 +39,7 @@ The usage of this API is ruled by the Terms of Use at:
5339
To integrate this library you need to have:
5440

5541
* Python 3.8+
56-
* requests_oauthlib >= 1.3.0
42+
* requests_oauthlib == 1.3.1
5743

5844
## Installation
5945

noxfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
nox.options.sessions = ["tests", "lint", "build"]
55

6-
python = ["3.10"]
6+
python = ["3.12"]
77

88

99
lint_dependencies = [
@@ -35,7 +35,7 @@ def cover(session):
3535
session.run("coverage", "erase")
3636

3737

38-
@nox.session(python="3.10")
38+
@nox.session(python="3.12")
3939
def lint(session):
4040
session.install(*lint_dependencies)
4141
files = ["tests"] + [str(p) for p in Path(".").glob("*.py")]
@@ -49,7 +49,7 @@ def lint(session):
4949
session.run("check-manifest")
5050

5151

52-
@nox.session(python="3.10")
52+
@nox.session(python="3.12")
5353
def build(session):
5454
session.install("setuptools")
5555
session.install("wheel")
@@ -58,7 +58,7 @@ def build(session):
5858
session.run("python", "setup.py", "--quiet", "sdist", "bdist_wheel")
5959

6060

61-
@nox.session(python="3.10")
61+
@nox.session(python="3.12")
6262
def publish(session):
6363
build(session)
6464
print("REMINDER: Has the changelog been updated?")

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"Topic :: Utilities",
2222
],
2323
description="Python bindings for Upwork API (OAuth2)",
24-
install_requires=["requests_oauthlib>=1.3.0"],
24+
install_requires=["requests_oauthlib==1.3.1"],
2525
license="Apache Software License 2.0",
2626
long_description=readme,
2727
long_description_content_type="text/markdown",
@@ -31,6 +31,6 @@
3131
packages=find_packages(),
3232
setup_requires=[],
3333
url="https://github.com/upwork/python-upwork-oauth2",
34-
version="3.1.0",
34+
version="3.2.0",
3535
zip_safe=False,
3636
)

tests/routers/activities/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/routers/activities/test_activities_engagement.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

tests/routers/activities/test_activities_team.py

Lines changed: 0 additions & 59 deletions
This file was deleted.

tests/routers/freelancers/test_freelancers_profile.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

tests/routers/freelancers/test_freelancers_search.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

tests/routers/hr/clients/test_hr_clients_applications.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)