Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop packaging integrations for Python 2 #18576

Closed
wants to merge 3 commits into from
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions active_directory/changelog.d/18576.removed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 2.
6 changes: 1 addition & 5 deletions active_directory/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[build-system]
requires = [
"hatchling>=0.11.2",
"setuptools>=66; python_version > '3.0'",
"setuptools; python_version < '3.0'",
]
build-backend = "hatchling.build"

Expand All @@ -25,7 +23,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
Expand All @@ -39,8 +36,7 @@ dynamic = [

[project.optional-dependencies]
deps = [
"pywin32==228; sys_platform == 'win32' and python_version < '3.0'",
"pywin32==306; sys_platform == 'win32' and python_version > '3.0'",
"pywin32==306; sys_platform == 'win32'",
]

[project.urls]
Expand Down
85 changes: 0 additions & 85 deletions active_directory/setup.py

This file was deleted.

1 change: 1 addition & 0 deletions activemq/changelog.d/18576.removed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 2.
3 changes: 0 additions & 3 deletions activemq/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[build-system]
requires = [
"hatchling>=0.11.2",
"setuptools>=66; python_version > '3.0'",
"setuptools; python_version < '3.0'",
]
build-backend = "hatchling.build"

Expand All @@ -25,7 +23,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
Expand Down
81 changes: 0 additions & 81 deletions activemq/setup.py

This file was deleted.

1 change: 1 addition & 0 deletions activemq_xml/changelog.d/18576.removed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 2.
3 changes: 0 additions & 3 deletions activemq_xml/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[build-system]
requires = [
"hatchling>=0.11.2",
"setuptools>=66; python_version > '3.0'",
"setuptools; python_version < '3.0'",
]
build-backend = "hatchling.build"

Expand All @@ -25,7 +23,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
Expand Down
82 changes: 0 additions & 82 deletions activemq_xml/setup.py

This file was deleted.

1 change: 1 addition & 0 deletions aerospike/changelog.d/18576.removed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove support for Python 2.
6 changes: 1 addition & 5 deletions aerospike/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[build-system]
requires = [
"hatchling>=0.11.2",
"setuptools>=66; python_version > '3.0'",
"setuptools; python_version < '3.0'",
]
build-backend = "hatchling.build"

Expand All @@ -24,7 +22,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Monitoring",
"Private :: Do Not Upload",
Expand All @@ -40,8 +37,7 @@ license = "BSD-3-Clause"

[project.optional-dependencies]
deps = [
"aerospike==4.0.0; sys_platform != 'win32' and sys_platform != 'darwin' and python_version < '3.0'",
"aerospike==7.1.1; sys_platform != 'win32' and sys_platform != 'darwin' and python_version > '3.0'",
"aerospike==7.1.1; sys_platform != 'win32' and sys_platform != 'darwin'",
]

[project.urls]
Expand Down
Loading
Loading